PhysX Schema#
Variables
-
TfStaticData<PhysxSchemaTokensType> PhysxSchemaTokens#
A global variable with static, efficient TfToken for use in all public USD API.
See also
-
class PhysxSchemaJointStateAPI : public UsdAPISchemaBase#
The PhysicsJointStateAPI allows reading and modifying position and velocity of a specific articulation joint axis. It can be applied only to the following joint primitives when they are part of an articulation:
The PhysicsJointStateAPI is a multipleApply schema, and its instance name TfToken defines the joint axis. For multi degrees-of-freedom joints, the instance names to choose from are: “transX”, “transY”, “transZ”, “rotX”, “rotY”, “rotZ”. For prismatic joints, the name “linear” has to be used. For revolute joints, the name “angular” has to be used.
Public Functions
- inline explicit PhysxSchemaJointStateAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaJointStateAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaJointStateAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “state:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaJointStateAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaJointStateAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaJointStateAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaJointStateAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetPositionAttr() const#
Joint state position defines the relative difference expressed as a distance or angle between articulation joint body0 frame and articulation joint body1 frame.
For UsdPhysicsPrismaticJoint it’s the linear distance between body0 and body1 along the axis specified by the joint itself. For UsdPhysicsRevoluteJoint it’s the angular difference between body0 and body1 frames along the axis specified by the joint itself. For UsdPhsyicsJoint joints it’s the angular or linear difference between body0 and body1 frames along the axis specified by the multiple apply schema instance name.
When writing to the position attribute, the changes are immediately reflected on the next simulation step, instantaneously teleporting articulation links to the wanted position.
After a simulation step, the position value will reflect the actual last position of the joint, that may have been affected by other mechanisms such as drives.
Range: (-inf, inf) Units: linear - distance angular - degrees
Declaration
float physics:position = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePositionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPositionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVelocityAttr() const#
Joint state velocity defines the relative velocity between joint body0 and joint body1 along the specified joint axis.
For UsdPhysicsPrismaticJoint it’s the relative linear velocitity of body0 relative to body1 along the axis specified by the joint itself. For UsdPhysicsRevoluteJoint it’s the relative angular velocitity of body0 relative to body1 along the axis specified by the joint itself. For UsdPhsyicsJoint joints it’s the relative angular or linear velocitity of body0 relative to body1 along the axis specified by the multiple apply schema instance name.
When writing to the velocity attribute, the changes are immediately reflected on the next simulation step, instantaneously changing velocity to the wanted value.
After a simulation step, the velocity value will reflect the actual last velocity of the joint, that may have been affected by other mechanisms such as drives.
Range: (-inf, inf) Units: linear - distance / seconds angular - degrees / seconds
Declaration
float physics:velocity = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path state#
Return a PhysxSchemaJointStateAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaJointStateAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaJointStateAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaJointStateAPI(prim, name);.
- static std::vector<PhysxSchemaJointStateAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaJointStateAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysicsJointStateAPI.
- static bool IsPhysicsJointStateAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysicsJointStateAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaJointStateAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysicsJointStateAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysicsJointStateAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaJointStateAPI object is returned upon success. An invalid (or empty) PhysxSchemaJointStateAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxArticulationAPI : public UsdAPISchemaBase#
PhysX articulation extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxArticulationAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxArticulationAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxArticulationAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxArticulationAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxArticulationAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxArticulationAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxArticulationAPI()#
Destructor.
-
UsdAttribute GetArticulationEnabledAttr() const#
Boolean defining whether articulation is enabled or disabled.
Declaration
bool physxArticulation:articulationEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateArticulationEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetArticulationEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverPositionIterationCountAttr() const#
Solver position iteration counts for the body. Allowed range [1, 255].
Declaration
int physxArticulation:solverPositionIterationCount = 32
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateSolverPositionIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverPositionIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverVelocityIterationCountAttr() const#
Solver velocity iteration counts for the body. Allowed range [0, 255].
Declaration
int physxArticulation:solverVelocityIterationCount = 1
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateSolverVelocityIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverVelocityIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSleepThresholdAttr() const#
Mass-normalized kinetic energy threshold below which the articulation may go to sleep. Range: [0, inf) Default: 0.00005 * tolerancesSpeed * tolerancesSpeed Units: distance * distance / seconds / seconds.
Declaration
float physxArticulation:sleepThreshold = 0.00005
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSleepThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSleepThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStabilizationThresholdAttr() const#
The mass-normalized kinetic energy threshold below which the articulation may participate in stabilization. Range: [0, inf) Default: 0.00001 * tolerancesSpeed * tolerancesSpeed Units: distance * distance / seconds / seconds.
Declaration
float physxArticulation:stabilizationThreshold = 0.00001
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStabilizationThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStabilizationThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnabledSelfCollisionsAttr() const#
Boolean defining whether self collisions should be enabled or disabled.
Declaration
bool physxArticulation:enabledSelfCollisions = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnabledSelfCollisionsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnabledSelfCollisionsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxArticulationAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxArticulationAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxArticulationAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxArticulationAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxArticulationAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxArticulationAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxArticulationAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxAutoAttachmentAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. Auto generates the attachment points and filtering ids based on the attributes defined in the API.
Public Functions
- inline explicit PhysxSchemaPhysxAutoAttachmentAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxAutoAttachmentAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxAutoAttachmentAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxAutoAttachmentAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxAutoAttachmentAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxAutoAttachmentAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxAutoAttachmentAPI()#
Destructor.
-
UsdAttribute GetEnableDeformableVertexAttachmentsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enables attaching deformable mesh vertices which overlap with the other actor’s volume.
Declaration
bool physxAutoAttachment:enableDeformableVertexAttachments = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableDeformableVertexAttachmentsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableDeformableVertexAttachmentsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDeformableVertexOverlapOffsetAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Deformable mesh vertices are attached if their distance to the other actor’s volume is smaller than the offset. Range: [0, inf) Units: distance.
Declaration
float physxAutoAttachment:deformableVertexOverlapOffset = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDeformableVertexOverlapOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDeformableVertexOverlapOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableRigidSurfaceAttachmentsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enables sampling attachment points on the rigid actor’s surface.
Declaration
bool physxAutoAttachment:enableRigidSurfaceAttachments = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableRigidSurfaceAttachmentsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableRigidSurfaceAttachmentsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRigidSurfaceSamplingDistanceAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Attachment points on the rigid surface are positioned such that their typical neighbor distance matches the sampling distance. Use heuristic by default. Range: [0, inf) Units: distance.
Declaration
float physxAutoAttachment:rigidSurfaceSamplingDistance = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRigidSurfaceSamplingDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRigidSurfaceSamplingDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableCollisionFilteringAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enables adding collision filtering in the vicinity of the attachment points.
Declaration
bool physxAutoAttachment:enableCollisionFiltering = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableCollisionFilteringAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableCollisionFilteringAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionFilteringOffsetAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Filtering ids are generated for deformable mesh vertices if their distance to the other actor’s volume is smaller than the offset. Use heuristic by default. Range: [0, inf) Units: distance.
Declaration
float physxAutoAttachment:collisionFilteringOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCollisionFilteringOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionFilteringOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableDeformableFilteringPairsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enables geometry pair based collision filtering for deformable-deformable attachments. By default a filtered geometry of one actor is filtered against all geometries of the other actor.
Declaration
bool physxAutoAttachment:enableDeformableFilteringPairs = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableDeformableFilteringPairsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableDeformableFilteringPairsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxAutoAttachmentAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxAutoAttachmentAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxAutoAttachmentAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxAutoAttachmentAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxAutoAttachmentAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxAutoAttachmentAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxAutoAttachmentAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxAutoParticleClothAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a UsdGeomMesh with PhysxParticleClothAPI. Defines parameters to automatically compute spring constraints.
Public Functions
- inline explicit PhysxSchemaPhysxAutoParticleClothAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxAutoParticleClothAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxAutoParticleClothAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxAutoParticleClothAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxAutoParticleClothAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxAutoParticleClothAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxAutoParticleClothAPI()#
Destructor.
-
UsdAttribute GetSpringStretchStiffnessAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Stretch stiffness. Represents a stiffness for linear springs placed between particles to counteract stretching. Range: [0, inf) Units: force / distance = mass / second / second.
Declaration
float physxAutoParticleCloth:springStretchStiffness = 1.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringStretchStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringStretchStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringBendStiffnessAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Bend stiffness. Represents a stiffness for linear springs placed in a way to counteract bending. Range: [0, inf) Units: force / distance = mass / second / second.
Declaration
float physxAutoParticleCloth:springBendStiffness = 1.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringBendStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringBendStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringShearStiffnessAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Shear stiffness. Represents a stiffness for linear springs placed in a way to counteract shear. Range: [0, inf) Units: force / distance = mass / second / second.
Declaration
float physxAutoParticleCloth:springShearStiffness = 1.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringShearStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringShearStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringDampingAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Damping on cloth spring constraints. Applies to all constraints parametrized by stiffness attributes. Range: [0, inf) Units: force * second / distance = mass / second.
Declaration
float physxAutoParticleCloth:springDamping = 10
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDisableMeshWeldingAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Disable welding of the UsdGeomMesh vertices for cloth simulation.
Declaration
bool physxAutoParticleCloth:disableMeshWelding = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateDisableMeshWeldingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDisableMeshWeldingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxAutoParticleClothAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxAutoParticleClothAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxAutoParticleClothAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxAutoParticleClothAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxAutoParticleClothAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxAutoParticleClothAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxAutoParticleClothAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCameraAPI : public UsdAPISchemaBase#
PhysX camera.
Public Functions
- inline explicit PhysxSchemaPhysxCameraAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCameraAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCameraAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCameraAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCameraAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCameraAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCameraAPI()#
Destructor.
-
UsdAttribute GetAlwaysUpdateEnabledAttr() const#
When enabled, always update this camera whether it is the active camera or not. This prevents cameras from slewing into position when switching to a new active camera. When disabled, only the active camera is updated, saving time.
Declaration
bool alwaysUpdateEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateAlwaysUpdateEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAlwaysUpdateEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetPhysxCameraSubjectRel() const#
Reference to the subject this camera is to track.
-
UsdRelationship CreatePhysxCameraSubjectRel() const#
See GetPhysxCameraSubjectRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCameraAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCameraAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCameraAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxCameraAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCameraAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCameraAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCameraAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCameraDroneAPI : public UsdAPISchemaBase#
PhysX drone camera that follows its subject from the air as it drives.
Public Functions
- inline explicit PhysxSchemaPhysxCameraDroneAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCameraDroneAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCameraDroneAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCameraDroneAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCameraDroneAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCameraDroneAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCameraDroneAPI()#
Destructor.
-
UsdAttribute GetFollowHeightAttr() const#
The height above the subject that the drone attmepts to maintain. e.g. 15 meters.
Declaration
float physxDroneCamera:followHeight
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowHeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowHeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowDistanceAttr() const#
The distance from the subject that the drone attempts to maintain. e.g. 30 meters.
Declaration
float physxDroneCamera:followDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxDistanceAttr() const#
The maximum distance allowed from the subject before the drone resets to the target position. e.g. 100 meters.
Declaration
float physxDroneCamera:maxDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSpeedAttr() const#
The maximum speed the drone is allowed to move. e.g. 20.0 meters/second.
Declaration
float physxDroneCamera:maxSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetHorizontalVelocityGainAttr() const#
The higher the gain, the faster the drone will accelerate towards the target position. e.g. 1.0.
Declaration
float physxDroneCamera:horizontalVelocityGain
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateHorizontalVelocityGainAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetHorizontalVelocityGainAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVerticalVelocityGainAttr() const#
The higher the gain, the higher the climb or descent rate of the drone to get to the target altitude. e.g. 1.0.
Declaration
float physxDroneCamera:verticalVelocityGain
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVerticalVelocityGainAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVerticalVelocityGainAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFeedForwardVelocityGainAttr() const#
The higher the gain, the more closely the drone will match the velocity of the subject and the more connected it will appear. e.g. 0.1.
Declaration
float physxDroneCamera:feedForwardVelocityGain
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFeedForwardVelocityGainAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFeedForwardVelocityGainAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVelocityFilterTimeConstantAttr() const#
The velocity of the drone is filtered to make it appear as if it is accelerating. e.g. 1.0 seconds.
Declaration
float physxDroneCamera:velocityFilterTimeConstant
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVelocityFilterTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVelocityFilterTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRotationFilterTimeConstantAttr() const#
The angular velocity of the drone is filtered to make it appear as if it is accelerating. e.g. 0.2 seconds.
Declaration
float physxDroneCamera:rotationFilterTimeConstant
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRotationFilterTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRotationFilterTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPositionOffsetAttr() const#
An offset vector from the subject origin at which the drone looks. e.g. (0.0 m, 0.0 m, 0.0 m)
Declaration
float3 physxDroneCamera:positionOffset
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreatePositionOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPositionOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCameraDroneAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCameraDroneAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCameraDroneAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxCameraDroneAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCameraDroneAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCameraDroneAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCameraDroneAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCameraFollowAPI : public UsdAPISchemaBase#
PhysX camera that follows behind the subject as it moves.
Public Functions
- inline explicit PhysxSchemaPhysxCameraFollowAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCameraFollowAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCameraFollowAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCameraFollowAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCameraFollowAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCameraFollowAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCameraFollowAPI()#
Destructor.
-
UsdAttribute GetYawAngleAttr() const#
The yaw angle of the follow vector around the subject. Zero is directly behind the subject. e.g. 0 degrees.
Declaration
float physxFollowCamera:yawAngle
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateYawAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetYawAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPitchAngleAttr() const#
The pitch angle of the follow vector around the subject. Zero is directly behind the subject. e.g. 15 degrees.
Declaration
float physxFollowCamera:pitchAngle
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePitchAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPitchAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPitchAngleTimeConstantAttr() const#
Time constant to filter the pitch angle, in seconds. Used to pitch the camera up and down when driving up or down hills. e.g. 0.2 seconds.
Declaration
float physxFollowCamera:pitchAngleTimeConstant
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePitchAngleTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPitchAngleTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSlowSpeedPitchAngleScaleAttr() const#
Scale of the camera pitch angle at slow speed. This lowers the camera behind the subject at slow speeds. e.g. 0.5.
Declaration
float physxFollowCamera:slowSpeedPitchAngleScale
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSlowSpeedPitchAngleScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSlowSpeedPitchAngleScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSlowPitchAngleSpeedAttr() const#
Scale of the camera pitch angle at slow speed. This lowers the camera behind the subject at slow speeds. e.g. 1000 cm/sec.
Declaration
float physxFollowCamera:slowPitchAngleSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSlowPitchAngleSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSlowPitchAngleSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVelocityNormalMinSpeedAttr() const#
The minimum speed, below which, the subject look vector must be used because the normalized velocity vector is too erratic. e.g. 600.0 cm/sec.
Declaration
float physxFollowCamera:velocityNormalMinSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVelocityNormalMinSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVelocityNormalMinSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowMinSpeedAttr() const#
The minimum speed used for a linear interpolation to compute the follow distance of the camera. e.g. 300.0 cm/sec.
Declaration
float physxFollowCamera:followMinSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowMinSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowMinSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowMinDistanceAttr() const#
The minimum distance used for a linear interpolation to compute the follow distance of the camera. e.g. 1500.0 cm.
Declaration
float physxFollowCamera:followMinDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowMinDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowMinDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowMaxSpeedAttr() const#
The maximum speed used for a linear interpolation to compute the follow distance of the camera. e.g. 3000.0 cm/sec.
Declaration
float physxFollowCamera:followMaxSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowMaxSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowMaxSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowMaxDistanceAttr() const#
The maximum distance used for a linear interpolation to compute the follow distance of the camera. e.g. 1000.0 cm.
Declaration
float physxFollowCamera:followMaxDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowMaxDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowMaxDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetYawRateTimeConstantAttr() const#
Time constant to filter the subject yaw rate, in seconds. Use to look into turns. e.g. 0.2 sec.
Declaration
float physxFollowCamera:yawRateTimeConstant
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateYawRateTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetYawRateTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowTurnRateGainAttr() const#
A scale factor that multiplies the filtered yaw rate to yaw the camera position behind the subject. Can be any positive or negative number. e.g. 0.2.
Declaration
float physxFollowCamera:followTurnRateGain
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowTurnRateGainAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowTurnRateGainAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCameraPositionTimeConstantAttr() const#
Filter time constant for the position of the camera for each axis, in seconds. e.g. (0.5 sec, 0.1 sec, 0.5 sec)
Declaration
float3 physxFollowCamera:cameraPositionTimeConstant
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateCameraPositionTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCameraPositionTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPositionOffsetAttr() const#
Position offset from the subject center of mass from which the camera follow vector and look vector are computed. e.g. (0.0 cm, 10.0 cm, 0.0 cm)
Declaration
float3 physxFollowCamera:positionOffset
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreatePositionOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPositionOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookAheadMinSpeedAttr() const#
The minimum speed used for a linear interpolation to compute the look ahead distance of the camera look point. e.g. 0.0 cm/sec.
Declaration
float physxFollowCamera:lookAheadMinSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLookAheadMinSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookAheadMinSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookAheadMinDistanceAttr() const#
The minimum distance used for a linear interpolation to compute the look ahead distance of the camera look point. e.g. 0.0 cm.
Declaration
float physxFollowCamera:lookAheadMinDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLookAheadMinDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookAheadMinDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookAheadMaxSpeedAttr() const#
The maximum speed used for a linear interpolation to compute the look ahead distance of the camera look point. e.g. 2000.0 cm.
Declaration
float physxFollowCamera:lookAheadMaxSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLookAheadMaxSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookAheadMaxSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookAheadMaxDistanceAttr() const#
The maximum distance used for a linear interpolation to compute the look ahead distance of the camera look point. e.g. 500.0 cm.
Declaration
float physxFollowFollowCamera:lookAheadMaxDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLookAheadMaxDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookAheadMaxDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookAheadTurnRateGainAttr() const#
A scale factor that multiplies the filtered yaw rate to yaw the camera look point left or right. Can be any positive or negative number. e.g. 0.2.
Declaration
float physxFollowCamera:lookAheadTurnRateGain
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLookAheadTurnRateGainAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookAheadTurnRateGainAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookPositionHeightAttr() const#
Distance to elevate the camera look point. e.g. 50.0 cm.
Declaration
float physxFollowCamera:lookPositionHeight
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLookPositionHeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookPositionHeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLookPositionTimeConstantAttr() const#
Filter time constant for the camera look point, in seconds. e.g. (0.2 sec, 0.5 sec, 0.2 sec)
Declaration
float3 physxFollowCamera:lookPositionTimeConstant
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateLookPositionTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLookPositionTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCameraFollowAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCameraFollowAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCameraFollowAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxCameraFollowAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCameraFollowAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCameraFollowAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCameraFollowAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCameraFollowLookAPI : public UsdAPISchemaBase#
PhysX camera that follows behind the subject’s forward vector as it moves. Assumes the subject is always upright and does not roll.
Public Functions
- inline explicit PhysxSchemaPhysxCameraFollowLookAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCameraFollowLookAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCameraFollowLookAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCameraFollowLookAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCameraFollowLookAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCameraFollowLookAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCameraFollowLookAPI()#
Destructor.
-
UsdAttribute GetDownHillGroundAngleAttr() const#
The minimum pitch angle of the terrain used for a linear interpolation to adjust the pitch of the camera. e.g. -45.0 degrees.
Declaration
float physxFollowLookCamera:downHillGroundAngle
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDownHillGroundAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDownHillGroundAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDownHillGroundPitchAttr() const#
The minimum pitch angle of the camera used for a linear interpolation to adjust the pitch of the camera. e.g. 10.0 degrees.
Declaration
float physxFollowLookCamera:downHillGroundPitch
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDownHillGroundPitchAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDownHillGroundPitchAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpHillGroundAngleAttr() const#
The maximum pitch angle of the terrain used for a linear interpolation to adjust the pitch of the camera. e.g. 45.0 degrees.
Declaration
float physxFollowLookCamera:upHillGroundAngle
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateUpHillGroundAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpHillGroundAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpHillGroundPitchAttr() const#
The maximum pitch angle of the camera used for a linear interpolation to adjust the pitch of the camera. e.g. 10.0 degrees.
Declaration
float physxFollowLookCamera:upHillGroundPitch
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateUpHillGroundPitchAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpHillGroundPitchAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVelocityBlendTimeConstantAttr() const#
Filter time constant to blend between the look and velocity vectors, in seconds. e.g. 0.1 seconds.
Declaration
float physxFollowLookCamera:velocityBlendTimeConstant
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVelocityBlendTimeConstantAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVelocityBlendTimeConstantAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowReverseSpeedAttr() const#
The positive, maximum speed, when driving in reverse, used for a linear interpolation to compute the follow distance of the camera. e.g. 1500.0 cm/sec.
Declaration
float physxFollowLookCamera:followReverseSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowReverseSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowReverseSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFollowReverseDistanceAttr() const#
The maximum distance, when driving in reverse, used for a linear interpolation to compute the follow distance of the camera. e.g. 3000.0 cm.
Declaration
float physxFollowLookCamera:followReverseDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFollowReverseDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFollowReverseDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCameraFollowLookAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCameraFollowLookAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCameraFollowLookAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxCameraFollowLookAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCameraFollowLookAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCameraFollowLookAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCameraFollowLookAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCameraFollowVelocityAPI : public UsdAPISchemaBase#
PhysX camera that follows behind the subject’s velocity vector as it moves, which allows the subject to roll and tumble.
Public Functions
- inline explicit PhysxSchemaPhysxCameraFollowVelocityAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCameraFollowVelocityAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCameraFollowVelocityAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCameraFollowVelocityAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCameraFollowVelocityAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCameraFollowVelocityAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCameraFollowVelocityAPI()#
Destructor.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCameraFollowVelocityAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCameraFollowVelocityAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCameraFollowVelocityAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxCameraFollowVelocityAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCameraFollowVelocityAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCameraFollowVelocityAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCameraFollowVelocityAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCharacterControllerAPI : public UsdAPISchemaBase#
PhysxCharacterControllerAPI can be applied to a capsuleGeom. It will turn the capsule into a character controller.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxCharacterControllerAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCharacterControllerAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCharacterControllerAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCharacterControllerAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCharacterControllerAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCharacterControllerAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCharacterControllerAPI()#
Destructor.
-
UsdAttribute GetSlopeLimitAttr() const#
Slope limit which the CCT can climb. The limit is expressed as the cosine of the desired limit angle. A value of 0 disables this feature.
Declaration
float physxCharacterController:slopeLimit = 0.3
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSlopeLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSlopeLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMoveTargetAttr() const#
Desired target position that CCT should try to reach.
Declaration
vector3f physxCharacterController:moveTarget = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Vector3f
- UsdAttribute CreateMoveTargetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMoveTargetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpAxisAttr() const#
Up axis for stepping functionality.
Declaration
uniform token physxCharacterController:upAxis = "Z"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
X, Y, Z
- UsdAttribute CreateUpAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetNonWalkableModeAttr() const#
The non-walkable mode controls if a character controller slides or not on a non-walkable part.
Declaration
uniform token physxCharacterController:nonWalkableMode = "preventClimbing"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
preventClimbing, preventClimbingForceSliding
- UsdAttribute CreateNonWalkableModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNonWalkableModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetClimbingModeAttr() const#
The climbing mode.
Declaration
uniform token physxCharacterController:climbingMode = "easy"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
easy, constrained
- UsdAttribute CreateClimbingModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetClimbingModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetInvisibleWallHeightAttr() const#
Height of invisible walls created around non-walkable triangles. Range: [0, inf) Units: distance.
Declaration
float physxCharacterController:invisibleWallHeight = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateInvisibleWallHeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetInvisibleWallHeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxJumpHeightAttr() const#
Maximum height a jumping character can reach. Range: [0, inf) Units: distance.
Declaration
float physxCharacterController:maxJumpHeight = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxJumpHeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxJumpHeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetContactOffsetAttr() const#
The contact offset used by the controller. Range: [0, inf) Units: distance.
Declaration
float physxCharacterController:contactOffset = 0.1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateContactOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetContactOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStepOffsetAttr() const#
Defines the maximum height of an obstacle which the character can climb. Range: [0, inf) Units: distance.
Declaration
float physxCharacterController:stepOffset = 0.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStepOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStepOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetScaleCoeffAttr() const#
Scale coefficient for underlying kinematic actor. Range: [0, inf) Units: dimensionless.
Declaration
float physxCharacterController:scaleCoeff = 0.8
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateScaleCoeffAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetScaleCoeffAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVolumeGrowthAttr() const#
Cached volume growth. Range: [0, inf) Units: dimensionless.
Declaration
float physxCharacterController:volumeGrowth = 1.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVolumeGrowthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVolumeGrowthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetSimulationOwnerRel() const#
Single PhysicsScene that simulates this character controller. By default, this is the first PhysicsScene found in the stage using UsdStage::Traverse().
-
UsdRelationship CreateSimulationOwnerRel() const#
See GetSimulationOwnerRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCharacterControllerAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCharacterControllerAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCharacterControllerAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxCharacterControllerAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCharacterControllerAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCharacterControllerAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCharacterControllerAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCollisionAPI : public UsdAPISchemaBase#
PhysX collision extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCollisionAPI()#
Destructor.
-
UsdAttribute GetContactOffsetAttr() const#
Contact offset of a collision shape. Default value -inf means default is picked by the simulation based on the shape extent. Range: [maximum(0, restOffset), inf) Units: distance.
Declaration
float physxCollision:contactOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateContactOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetContactOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestOffsetAttr() const#
Rest offset of a collision shape. Default value -inf means that the simulation sets a suitable value. For rigid bodies, this value is zero. Range: [0, contactOffset] Units: distance.
Declaration
float physxCollision:restOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRestOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTorsionalPatchRadiusAttr() const#
Defines the radius of the contact patch used to apply torsional friction. Range: [0, inf) Units: distance.
Declaration
float physxCollision:torsionalPatchRadius = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateTorsionalPatchRadiusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTorsionalPatchRadiusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinTorsionalPatchRadiusAttr() const#
Defines the minimum radius of the contact patch used to apply torsional friction. Range: [0, inf) Units: distance.
Declaration
float physxCollision:minTorsionalPatchRadius = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinTorsionalPatchRadiusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinTorsionalPatchRadiusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxCollisionAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxContactReportAPI : public UsdAPISchemaBase#
Enables contact reporting for a rigid body or articulation.
Public Functions
- inline explicit PhysxSchemaPhysxContactReportAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxContactReportAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxContactReportAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxContactReportAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxContactReportAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxContactReportAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxContactReportAPI()#
Destructor.
-
UsdAttribute GetThresholdAttr() const#
Sets the force threshold for contact reports. Range: [0, inf] Units: force = mass * distance / seconds^2.
Declaration
float physxContactReport:threshold = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetReportPairsRel() const#
Relationship to objects. If in contact with these objects, contact reports will be sent. If relationship not set or list empty all contacts are reported.
-
UsdRelationship CreateReportPairsRel() const#
See GetReportPairsRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxContactReportAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxContactReportAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxContactReportAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxContactReportAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxContactReportAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxContactReportAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxContactReportAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxConvexDecompositionCollisionAPI : public UsdAPISchemaBase#
PhysX convex decomposition extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxConvexDecompositionCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxConvexDecompositionCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxConvexDecompositionCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxConvexDecompositionCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxConvexDecompositionCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxConvexDecompositionCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxConvexDecompositionCollisionAPI()#
Destructor.
-
UsdAttribute GetHullVertexLimitAttr() const#
Convex hull vertex limit used for convex hull cooking.
Declaration
int physxConvexDecompositionCollision:hullVertexLimit = 64
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateHullVertexLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetHullVertexLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxConvexHullsAttr() const#
Maximum of convex hulls created during convex decomposition.
Declaration
int physxConvexDecompositionCollision:maxConvexHulls = 32
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxConvexHullsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxConvexHullsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinThicknessAttr() const#
Convex hull min thickness. Range: [0, inf) Units: distance.
Declaration
float physxConvexDecompositionCollision:minThickness = 0.001
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinThicknessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinThicknessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVoxelResolutionAttr() const#
Voxel resolution used for convex decomposition.
Declaration
int physxConvexDecompositionCollision:voxelResolution = 500000
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateVoxelResolutionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVoxelResolutionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetErrorPercentageAttr() const#
Convex decomposition errorPercentage parameter.
Declaration
float physxConvexDecompositionCollision:errorPercentage = 10
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateErrorPercentageAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetErrorPercentageAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetShrinkWrapAttr() const#
Attempts to adjust the convex hull points so that they are projected onto the surface of the original graphics mesh.
Declaration
bool physxConvexDecompositionCollision:shrinkWrap = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateShrinkWrapAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetShrinkWrapAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxConvexDecompositionCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxConvexDecompositionCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxConvexDecompositionCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxConvexDecompositionCollisionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxConvexDecompositionCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxConvexDecompositionCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxConvexDecompositionCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxConvexHullCollisionAPI : public UsdAPISchemaBase#
PhysX convex hull collision extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxConvexHullCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxConvexHullCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxConvexHullCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxConvexHullCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxConvexHullCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxConvexHullCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxConvexHullCollisionAPI()#
Destructor.
-
UsdAttribute GetHullVertexLimitAttr() const#
Convex hull vertex limit used for convex hull cooking.
Declaration
int physxConvexHullCollision:hullVertexLimit = 64
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateHullVertexLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetHullVertexLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinThicknessAttr() const#
Convex hull minimum thickness. Range: [0, inf) Units: distance.
Declaration
float physxConvexHullCollision:minThickness = 0.001
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinThicknessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinThicknessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxConvexHullCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxConvexHullCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxConvexHullCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxConvexHullCollisionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxConvexHullCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxConvexHullCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxConvexHullCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxCookedDataAPI : public UsdAPISchemaBase#
PhysX cooked data storage.
Public Functions
- inline explicit PhysxSchemaPhysxCookedDataAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxCookedDataAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxCookedDataAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxCookedData:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxCookedDataAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxCookedDataAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxCookedDataAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxCookedDataAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetBufferAttr() const#
Declaration
uchar[] buffer
C++ Type
VtArray<unsigned char>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UCharArray
- UsdAttribute CreateBufferAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBufferAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxCookedData#
Return a PhysxSchemaPhysxCookedDataAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxCookedDataAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxCookedDataAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxCookedDataAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxCookedDataAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxCookedDataAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxCookedDataAPI.
- static bool IsPhysxCookedDataAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxCookedDataAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxCookedDataAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxCookedDataAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxCookedDataAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxCookedDataAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxCookedDataAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxDeformableAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. Do not apply. Base API that provides attributes common to both deformable bodies and surfaces. Derived APIs are applied to UsdGeomMesh in order to create a deformable physics object. Note that the UsdGeomMesh points attribute becomes a read-only attribute for a deformable as the mesh is driven by the simulation.
Public Functions
- inline explicit PhysxSchemaPhysxDeformableAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxDeformableAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxDeformableAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxDeformableAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxDeformableAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxDeformableAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxDeformableAPI()#
Destructor.
-
UsdAttribute GetDeformableEnabledAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enable or disable the deformable object.
Declaration
bool physxDeformable:deformableEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateDeformableEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDeformableEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverPositionIterationCountAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Number of solver position iterations per time step. Range: [1, 255].
Declaration
uint physxDeformable:solverPositionIterationCount = 16
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateSolverPositionIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverPositionIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVertexVelocityDampingAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Artificial damping on the vertex velocity, which may approximate aerodynamic drag. Range: [0, inf) Units: 1/seconds.
Declaration
float physxDeformable:vertexVelocityDamping = 0.005
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVertexVelocityDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVertexVelocityDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSleepDampingAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Additional damping term if vertex velocity drops below settlingThreshold. Range: [0, inf) Units: 1/seconds.
Declaration
float physxDeformable:sleepDamping = 10
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSleepDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSleepDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSleepThresholdAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Velocity threshold under which the vertex becomes a candidate for sleeping. Range: [0, inf) Units: distance/seconds.
Declaration
float physxDeformable:sleepThreshold = 0.05
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSleepThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSleepThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSettlingThresholdAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Threshold vertex velocity under which sleep damping is applied in addition to velocity damping. Range: [0, inf] Units: distance/seconds.
Declaration
float physxDeformable:settlingThreshold = 0.1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSettlingThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSettlingThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxDepenetrationVelocityAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. The maximum velocity permitted to be introduced by the solver to depenetrate intersections. Range: [0, inf) Units: distance / seconds.
Declaration
float physxDeformable:maxDepenetrationVelocity = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxDepenetrationVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxDepenetrationVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSelfCollisionAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enables self collisions on the deformable, preventing self intersections.
Declaration
bool physxDeformable:selfCollision = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSelfCollisionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSelfCollisionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSelfCollisionFilterDistanceAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Distance under which self-collisions are disabled. Default value -inf means default is picked by the simulation. Range: [2*physxCollision:restOffset, max_float] Units: distance.
Declaration
float physxDeformable:selfCollisionFilterDistance = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSelfCollisionFilterDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSelfCollisionFilterDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableCCDAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Distance based CCD.
Declaration
bool physxDeformable:enableCCD = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableCCDAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableCCDAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestPointsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Rest points of the UsdGeomMesh in local coordinates. Units: distance.
Declaration
point3f[] physxDeformable:restPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateRestPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSimulationVelocitiesAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Simulation mesh vertex velocities in local coordinates. Units: distance / seconds.
Declaration
point3f[] physxDeformable:simulationVelocities
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateSimulationVelocitiesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSimulationVelocitiesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSimulationIndicesAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Simulation mesh indices.
Declaration
uniform int[] physxDeformable:simulationIndices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSimulationIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSimulationIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetSimulationOwnerRel() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Single PhysicsScene that simulates this deformable. By default, this is the first PhysicsScene found in the stage using UsdStage::Traverse().
-
UsdRelationship CreateSimulationOwnerRel() const#
See GetSimulationOwnerRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxDeformableAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxDeformableAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxDeformableAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxDeformableAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxDeformableAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxDeformableAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxDeformableAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxDeformableBodyAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. Applied to a UsdGeomMesh that is to be driven by a deformable body simulation. See PhysxDeformableAPI for information on how to define the deformable body’s material properties.
Public Functions
- inline explicit PhysxSchemaPhysxDeformableBodyAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxDeformableBodyAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxDeformableBodyAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxDeformableBodyAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxDeformableBodyAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxDeformableBodyAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxDeformableBodyAPI()#
Destructor.
-
UsdAttribute GetDisableGravityAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Disable gravity for the actor.
Declaration
bool physxDeformable:disableGravity = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateDisableGravityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDisableGravityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionIndicesAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Mesh indices that define the collision tetrahedral mesh together with the collisionPoints attribute.
Declaration
uniform int[] physxDeformable:collisionIndices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateCollisionIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionPointsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Mesh points in local coordinates that define the collision tetrahedral mesh together with the collisionIndices attribute. This attribute is read-only and may be updated from simulation data to reflect the current simulation state.
Declaration
point3f[] physxDeformable:collisionPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateCollisionPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionRestPointsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Mesh rest points in local coordinates that define the rest pose of the collision tetrahedral mesh together with the collisionIndices attribute.
Declaration
point3f[] physxDeformable:collisionRestPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateCollisionRestPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionRestPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSimulationPointsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Simulation mesh points in local coordinates that define the simulation tetrahedral mesh together with the simulationIndices attribute. This attribute may be updated from simulation data to reflect the current simulation state.
Declaration
point3f[] physxDeformable:simulationPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateSimulationPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSimulationPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSimulationRestPointsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Mesh rest points in local coordinates that define the rest pose of the simulation tetrahedral mesh together with the simulationIndices attribute.
Declaration
point3f[] physxDeformable:simulationRestPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateSimulationRestPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSimulationRestPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxDeformableBodyAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxDeformableBodyAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxDeformableBodyAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxDeformableBodyAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxDeformableBodyAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxDeformableBodyAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxDeformableBodyAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxDeformableBodyMaterialAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. Applied to USD Material. Defines material properties for deformable bodies.
Public Functions
- inline explicit PhysxSchemaPhysxDeformableBodyMaterialAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxDeformableBodyMaterialAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxDeformableBodyMaterialAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxDeformableBodyMaterialAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxDeformableBodyMaterialAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxDeformableBodyMaterialAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxDeformableBodyMaterialAPI()#
Destructor.
-
UsdAttribute GetDensityAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Material density. If set to 0.0, the simulation determines a default density. A density or mass set with a PhysicsMassAPI overrides the material density. Range: [0, inf) Units: mass / distance / distance / distance.
Declaration
float physxDeformableBodyMaterial:density = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDensityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDensityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetElasticityDampingAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Material damping parameter. Use values much smaller than one for good results. Range: [0, inf) Units: dimensionless.
Declaration
float physxDeformableBodyMaterial:elasticityDamping = 0.005
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateElasticityDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetElasticityDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDynamicFrictionAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Dynamic friction coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxDeformableBodyMaterial:dynamicFriction = 0.25
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDynamicFrictionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDynamicFrictionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetYoungsModulusAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Young’s modulus, i.e. the tensile stiffness of the material. Range: [0, inf) Units: force / area = mass/distance/seconds/seconds.
Declaration
float physxDeformableBodyMaterial:youngsModulus = 50000000
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateYoungsModulusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetYoungsModulusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPoissonsRatioAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Poissons’s ratio which defines the material’s volume preservation under stress. Range: [0, 0.5] Units: dimensionless.
Declaration
float physxDeformableBodyMaterial:poissonsRatio = 0.45
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePoissonsRatioAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPoissonsRatioAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingScaleAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Experimental parameter. Try a high damping together with a scale of zero for a water-bed like effect. Range: [0, 1] Units: dimensionless.
Declaration
float physxDeformableBodyMaterial:dampingScale = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxDeformableBodyMaterialAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxDeformableBodyMaterialAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxDeformableBodyMaterialAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxDeformableBodyMaterialAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxDeformableBodyMaterialAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxDeformableBodyMaterialAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxDeformableBodyMaterialAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxDeformableSurfaceAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a UsdGeomMesh that is to be simulated as a deformable surface. See PhysxDeformableAPI for information on how to define the deformable surface’s material properties.
Public Functions
- inline explicit PhysxSchemaPhysxDeformableSurfaceAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxDeformableSurfaceAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxDeformableSurfaceAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxDeformableSurfaceAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxDeformableSurfaceAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxDeformableSurfaceAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxDeformableSurfaceAPI()#
Destructor.
-
UsdAttribute GetFlatteningEnabledAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. If enabled, bending forces are applied such that the surface flattens, i.e., neighboring triangles become coplanar. If disabled, the forces drive toward the bend at the rest state.
Declaration
bool physxDeformableSurface:flatteningEnabled = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateFlatteningEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFlatteningEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBendingStiffnessScaleAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Scales bending stiffness computed from Young’s modulus, Poisson’s ratio, and the cloth thickness. Range: [0, inf) Units: dimensionless.
Declaration
float physxDeformableSurface:bendingStiffnessScale = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBendingStiffnessScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBendingStiffnessScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionPairUpdateFrequencyAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Determines how often cloth-to-cloth collision pairs are updated during each time step. Increasing this value results in more frequent updates to the contact pairs, which provides better contact points. For example, a value of 2 means collision pairs are updated twice per time step: once at the beginning and once in the middle of the time step (i.e., during the middle solver iteration). If set to 0, the solver adaptively determines when to update the cloth-to-cloth contact pairs, instead of using a fixed frequency. Range [1, solverPositionIterationCount].
Declaration
uint physxDeformableSurface:collisionPairUpdateFrequency = 1
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateCollisionPairUpdateFrequencyAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionPairUpdateFrequencyAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionIterationMultiplierAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Determines how many collision subiterations are used in each solver iteration. By default, collision constraints are applied once per solver iteration. Increasing this value applies collision constraints more frequently within each solver iteration. For example, a value of 2 means collision constraints are applied twice per solver iteration (i.e., collision constraints are applied 2 x solverPositionIterationCount times per time step). Increasing this value does not update collision pairs more frequently; refer to collisionPairUpdateFrequency for that. Range [1, solverPositionIterationCount/2].
Declaration
uint physxDeformableSurface:collisionIterationMultiplier = 1
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateCollisionIterationMultiplierAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionIterationMultiplierAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxVelocityAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Maximum velocity: the velocity of each cloth vertex is clamped by this maximum velocity value. If set to a negative value, the simulation determines a default value. Range: [0, inf) Units: distance / seconds.
Declaration
float physxDeformableSurface:maxVelocity = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxDeformableSurfaceAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxDeformableSurfaceAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxDeformableSurfaceAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxDeformableSurfaceAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxDeformableSurfaceAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxDeformableSurfaceAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxDeformableSurfaceAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxDeformableSurfaceMaterialAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to USD Material. Defines material properties for deformable surfaces.
Public Functions
- inline explicit PhysxSchemaPhysxDeformableSurfaceMaterialAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxDeformableSurfaceMaterialAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxDeformableSurfaceMaterialAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxDeformableSurfaceMaterialAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxDeformableSurfaceMaterialAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxDeformableSurfaceMaterialAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxDeformableSurfaceMaterialAPI()#
Destructor.
-
UsdAttribute GetDensityAttr() const#
Material density. If set to 0.0, the simulation determines a default value. The mass of deformable surface is computed by density * area * thickness. A density or mass set with a PhysicsMassAPI overrides the material density. Range: [0, inf) Units: mass / distance / distance / distance.
Declaration
float physxDeformableSurfaceMaterial:density = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDensityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDensityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDynamicFrictionAttr() const#
Dynamic friction coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxDeformableSurfaceMaterial:dynamicFriction = 0.25
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDynamicFrictionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDynamicFrictionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetYoungsModulusAttr() const#
Young’s modulus, i.e. the tensile stiffness of the material. Used to determine in-plane and bending stiffness. If set to a negative value, the simulation determines a default value. Range: [0, inf) Units: force / area = mass/distance/seconds/seconds.
Declaration
float physxDeformableSurfaceMaterial:youngsModulus = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateYoungsModulusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetYoungsModulusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPoissonsRatioAttr() const#
Poissons’s ratio which defines the material’s volume preservation under stress. Used to determine in-plane and bending stiffness. Range: [0, 0.5] Units: dimensionless.
Declaration
float physxDeformableSurfaceMaterial:poissonsRatio = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePoissonsRatioAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPoissonsRatioAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetThicknessAttr() const#
Virtual thickness of cloth mesh. Used to determine in-plane and bending stiffness, and mass from density. If set to 0.0, the simulation determines a default value. Range: [0.0, inf) Units: distance.
Declaration
float physxDeformableSurfaceMaterial:thickness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateThicknessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetThicknessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxDeformableSurfaceMaterialAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxDeformableSurfaceMaterialAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxDeformableSurfaceMaterialAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxDeformableSurfaceMaterialAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxDeformableSurfaceMaterialAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxDeformableSurfaceMaterialAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxDeformableSurfaceMaterialAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxDiffuseParticlesAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a UsdGeomPoints or UsdGeomPointInstancer primitive with PhysxParticleSetAPI. Defines settings that the particle simulation uses to spawn diffuse particles. The diffuse particles are a render-only effect and do not affect the particle dynamics.
Public Functions
- inline explicit PhysxSchemaPhysxDiffuseParticlesAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxDiffuseParticlesAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxDiffuseParticlesAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxDiffuseParticlesAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxDiffuseParticlesAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxDiffuseParticlesAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxDiffuseParticlesAPI()#
Destructor.
-
UsdAttribute GetDiffuseParticlesEnabledAttr() const#
Enable or disable the creation of diffuse particles.
Declaration
bool physxDiffuseParticles:diffuseParticlesEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateDiffuseParticlesEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDiffuseParticlesEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxDiffuseParticleMultiplierAttr() const#
Maximum number of diffuse particles that can be present in the simulation relative to the number of non-diffuse particles. Range: [0.0, inf) Default value -inf means default is picked by the simulation.
Declaration
uniform float physxDiffuseParticles:maxDiffuseParticleMultiplier = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMaxDiffuseParticleMultiplierAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxDiffuseParticleMultiplierAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetThresholdAttr() const#
Kinetic energy threshold a particle must reach to spawn a diffuse particle. Range: [0, inf) Units: energy = mass * distance * distance / seconds / seconds.
Declaration
float physxDiffuseParticles:threshold = 0.01
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLifetimeAttr() const#
Lifetime of a spawned particle before it is removed again. Range: [0, inf) Units: seconds.
Declaration
float physxDiffuseParticles:lifetime = 5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLifetimeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLifetimeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAirDragAttr() const#
Air drag force factor for spray particles. Range: [0, inf) Units: dimensionless.
Declaration
float physxDiffuseParticles:airDrag = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAirDragAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAirDragAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBubbleDragAttr() const#
Fluid drag force factor for bubble particles. Range: [0, inf) Units: dimensionless.
Declaration
float physxDiffuseParticles:bubbleDrag = 0.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBubbleDragAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBubbleDragAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBuoyancyAttr() const#
Buoyancy force factor for bubble particles. Range: [0, inf) Units: dimensionless.
Declaration
float physxDiffuseParticles:buoyancy = 0.8
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBuoyancyAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBuoyancyAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetKineticEnergyWeightAttr() const#
Contribution from kinetic energy when deciding diffuse particle creation. Range: [0, inf) Units: dimensionless.
Declaration
float physxDiffuseParticles:kineticEnergyWeight = 0.01
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateKineticEnergyWeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetKineticEnergyWeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPressureWeightAttr() const#
Contribution from pressure when deciding diffuse particle creation. Range: [0, inf) Units: dimensionless.
Declaration
float physxDiffuseParticles:pressureWeight = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePressureWeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPressureWeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDivergenceWeightAttr() const#
Contribution from divergence when deciding diffuse particle creation. Range: [0, inf) Units: dimensionless.
Declaration
float physxDiffuseParticles:divergenceWeight = 5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDivergenceWeightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDivergenceWeightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionDecayAttr() const#
Decay factor of diffuse particles’ lifetime after they collide with shapes. 0 == lifetime remains unchanged, 1 == particle disappears immediately. Range: [0, 1] Units: dimensionless.
Declaration
float physxDiffuseParticles:collisionDecay = 0.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCollisionDecayAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionDecayAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUseAccurateVelocityAttr() const#
Enables accurate particle velocity estimation.
Declaration
bool physxDiffuseParticles:useAccurateVelocity = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateUseAccurateVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUseAccurateVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxDiffuseParticlesAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxDiffuseParticlesAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxDiffuseParticlesAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxDiffuseParticlesAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxDiffuseParticlesAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxDiffuseParticlesAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxDiffuseParticlesAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxForceAPI : public UsdAPISchemaBase#
PhysX schema API that applies a force and torque to a rigid body (UsdGeom.Xformable with UsdPhysicsRigidBodyAPI). The API can be applied to either:
The rigid-body Xformable, in which case the force is applied at the body’s center of mass.
To an UsdGeom.Xformable that is a child of the rigid-body Xformable, in which case the force is applied at the location defined by the Xformable.
The worldFrameEnabled flag defines what coordinate frame the force and torque are expressed in. Note that any scale transform operations will only affect the force and torque values if on “acceleration” mode.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxForceAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxForceAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxForceAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxForceAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxForceAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxForceAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxForceAPI()#
Destructor.
-
UsdAttribute GetForceEnabledAttr() const#
Boolean defining whether the force and torque are enabled or disabled.
Declaration
bool physxForce:forceEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateForceEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetForceEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWorldFrameEnabledAttr() const#
Boolean defining whether the force and torque are in world frame or in local frame.
Declaration
bool physxForce:worldFrameEnabled = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateWorldFrameEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWorldFrameEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetModeAttr() const#
Force mode, can be either a force or an acceleration. force - units: (linear) mass * distance / seconds^2, i.e. a force (angular) mass * distance * distance / time^2, i.e. a torque acceleration - units: (linear) distance / seconds^2, i.e. a linear acceleration. (angular) degrees / seconds^2, i.e. an angular acceleration.
Declaration
uniform token physxForce:mode = "acceleration"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
force, acceleration
- UsdAttribute CreateModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetForceAttr() const#
Force to apply defined in global or local frame depending on worldFrameEnabled. The force is applied at the position defined by the relative transform to the parent rigid-body Xformable, or at the body’s center of mass if the API is applied directly to a rigid-body Xformable. For units see mode attribute. Range: (-inf, inf)
Declaration
vector3f physxForce:force = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Vector3f
- UsdAttribute CreateForceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetForceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTorqueAttr() const#
Torque to apply defined in the global or local frame depending on worldFrameEnabled. For units see mode attribute. Range: (-inf, inf)
Declaration
vector3f physxForce:torque = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Vector3f
- UsdAttribute CreateTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxForceAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxForceAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxForceAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxForceAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxForceAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxForceAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxForceAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxIsosurfaceAPI : public UsdAPISchemaBase#
Applied to a PhysxParticleSystem. Defines settings to extract an isosurface from the particles in the particle system.
Public Functions
- inline explicit PhysxSchemaPhysxIsosurfaceAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxIsosurfaceAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxIsosurfaceAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxIsosurfaceAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxIsosurfaceAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxIsosurfaceAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxIsosurfaceAPI()#
Destructor.
-
UsdAttribute GetIsoSurfaceEnabledAttr() const#
Enable or disable the creation of an isosurface.
Declaration
bool physxIsosurface:isoSurfaceEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateIsoSurfaceEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetIsoSurfaceEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxVerticesAttr() const#
Maximum number of vertices the extracted isosurface can have. Range: [3, inf)
Declaration
int physxIsosurface:maxVertices = 1048576
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxVerticesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxVerticesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxTrianglesAttr() const#
Maximum number of triangles the extracted isosurface can have. Range: [1, inf)
Declaration
int physxIsosurface:maxTriangles = 2097152
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxTrianglesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxTrianglesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSubgridsAttr() const#
Maximum number of blocks the sparse grid structure can contain. Range: [1, inf)
Declaration
int physxIsosurface:maxSubgrids = 1024
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxSubgridsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSubgridsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGridSpacingAttr() const#
Cell Size of the grid used for isosurface extraction. Range: (0, inf) Units: distance.
Declaration
float physxIsosurface:gridSpacing = 0.25
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGridSpacingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGridSpacingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetKernelRadiusAttr() const#
Radius of the kernel used to transfer the density to the isosurface grid. Range: (0, inf) Units: distance.
Declaration
float physxIsosurface:kernelRadius = 0.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateKernelRadiusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetKernelRadiusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetIsosurfaceLevelAttr() const#
The level at which the isosurface is located. Allows to control the droplet size. The signed distance field is more negative towards the center of the fluid and positive outside. Range: (-inf, inf) Units: distance.
Declaration
float physxIsosurface:isosurfaceLevel = -0.3
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateIsosurfaceLevelAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetIsosurfaceLevelAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGridFilteringPassesAttr() const#
Grid filtering sequence, defined as capital letters “S”:Smooth, “G”:Grow, “R”:Reduce. Up to 8 passes, every pass can consist of up to 4 repetitions.
Declaration
string physxIsosurface:gridFilteringPasses = "GSRS"
C++ Type
std::string
Usd_Datatypes “Usd Type”
SdfValueTypeNames->String
- UsdAttribute CreateGridFilteringPassesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGridFilteringPassesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGridSmoothingRadiusRelativeToCellSizeAttr() const#
The radius used during the smoothing process on the grid. It is measured relative to the grid’s cell size. Range: [0, inf) Units: dimensionless.
Declaration
float physxIsosurface:gridSmoothingRadiusRelativeToCellSize = 0.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGridSmoothingRadiusRelativeToCellSizeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGridSmoothingRadiusRelativeToCellSizeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableAnisotropyAttr() const#
Enables usage of anisotropy information during isosurface extraction process.
Declaration
bool physxIsosurface:enableAnisotropy = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableAnisotropyAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableAnisotropyAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAnisotropyMinAttr() const#
The minimal scale anisotropy can apply to a particle radius. Range: [0, anisotropyMax] Units: dimensionless.
Declaration
float physxIsosurface:anisotropyMin = 0.1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAnisotropyMinAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAnisotropyMinAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAnisotropyMaxAttr() const#
The maximal scale anisotropy can apply to a particle radius. Range: [anisotropyMin, inf) Units: dimensionless.
Declaration
float physxIsosurface:anisotropyMax = 2
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAnisotropyMaxAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAnisotropyMaxAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAnisotropyRadiusAttr() const#
Radius that defines the size of the neighborhood used to determine the anisotropy information. Range: [0, inf) Units: distance.
Declaration
float physxIsosurface:anisotropyRadius = 0.5
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAnisotropyRadiusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAnisotropyRadiusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetNumMeshSmoothingPassesAttr() const#
Number of smoothing passes applied to the generated isosurface triangle mesh. Using an even number of passes leads to less shrinking. Range: [0, inf)
Declaration
int physxIsosurface:numMeshSmoothingPasses = 2
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateNumMeshSmoothingPassesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNumMeshSmoothingPassesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxIsosurfaceAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxIsosurfaceAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxIsosurfaceAPI(stage->GetPrimAtPath(path));
-
static PhysxSchemaPhysxIsosurfaceAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxIsosurfaceAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxIsosurfaceAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxIsosurfaceAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaType schemaType = UsdSchemaType::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaType
Protected Functions
-
UsdSchemaType _GetSchemaType() const override#
Returns the type of schema this class belongs to.
See also
UsdSchemaType
-
class PhysxSchemaPhysxJointAPI : public UsdAPISchemaBase#
PhysX joint extended parameters. Can be applied to a PhysicsJoint prim or the derived classes PhysicsRevoluteJoint, PhysicsPrismaticJoint or PhysicsSphericalJoint.
Public Functions
- inline explicit PhysxSchemaPhysxJointAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxJointAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxJointAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxJointAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxJointAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxJointAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxJointAPI()#
Destructor.
-
UsdAttribute GetJointFrictionAttr() const#
Joint friction. Only applies to joints that are part of an articulation (see PhysicsArticulationRootAPI). All joint axes will use the same friction value.
The joint friction is unitless and relates the magnitudes of the linear force vector F and torque vector T transmitted from parent to child link to the maximal friction force F_resist that may be applied by the solver to resist joint motion, per axis; i.e. |F_resist| <= coefficient * (|F| + |T|), where F_resist may refer to a linear force or torque depending on the joint axis (linear vs. angular). The simulated friction effect is therefore similar to static and Coulomb friction. In order to simulate dynamic joint friction, a joint drive (see PhysicsDriveAPI) with zero stiffness and zero velocity target, and an appropriately dimensioned damping parameter should be used.
Range: [0, inf) Units: dimensionless
Declaration
float physxJoint:jointFriction = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateJointFrictionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetJointFrictionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxJointVelocityAttr() const#
Maximum joint velocity. Only applies to joints that are part of an articulation (see PhysicsArticulationRootAPI). All joint axes will use the same maximum joint velocity value.
The solver will apply appropriate joint-space impulses in order to enforce the per-axis joint-velocity limit.
Range: [0, inf) Units: Linear joint - distance / seconds Angular joint - degrees / seconds
Declaration
float physxJoint:maxJointVelocity = 1000000
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxJointVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxJointVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetArmatureAttr() const#
Conceptually, armature represents the inertia of an actuator driving the joint. It is an artificial mass/inertia that is added to the joint-space inertia and can help stabilize an articulation. Note that this parameter is used only when the joint belongs to an articulation (see PhysicsArticulationRootAPI). Furthermore, note that for a joint with multiple degrees of freedom (like a PhysicsSphericalJoint), the specified armature will be applied to each of the corresponding axes individually. Range: [0, inf) Units: Linear joint - mass Angular joint - mass * distance^2.
Declaration
float physxJoint:armature = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateArmatureAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetArmatureAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxJointAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxJointAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxJointAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxJointAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxJointAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxJointAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxJointAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxLimitAPI : public UsdAPISchemaBase#
PhysX joint limit extended parameters. Can be applied to a prim that has PhysicsLimitAPI applied. Note that this schema is only supported for joints that are NOT part of an articulation (see PhysicsArticulationRootAPI). PhysxLimitAPI is a multipleApply schema and supports the same set of schema instance names as PhysicsLimitAPI. The instance name used for the PhysxLimitAPI schema should match the one used for the corresponding PhysicsLimitAPI.
Public Functions
- inline explicit PhysxSchemaPhysxLimitAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxLimitAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxLimitAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxLimit:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxLimitAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxLimitAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxLimitAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxLimitAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetRestitutionAttr() const#
Controls the amount of bounce when the joint hits a limit. The dynamics solver will target a post simulation velocity of: restitution * -v (v = velocity along the joint axes). Note that restitution/bounce can not be combined with the stiffness/damping attributes. Either the limit is a hard constraint and restitution>=0, stiffness=0, damping=0 or the limit is a soft constraint and restitution=0, (stiffness>0 or damping>0) Range: [0, 1] Units: dimensionless.
Declaration
float restitution = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRestitutionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestitutionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBounceThresholdAttr() const#
Determines the minimum impact velocity which will cause the joint to bounce off the limit. Only relevant if the restitution attribute is larger than zero. If the threshold is not reached, hitting the limit will be treated as if restitution was zero. See restitution for more details on bounce behavior. Range: [0, inf) Units: linear - distance / seconds angular - degrees / seconds.
Declaration
float bounceThreshold = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBounceThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBounceThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStiffnessAttr() const#
Spring stiffness for spring-damper limit dynamics. If greater than zero, the limit is soft, i.e. a spring pulls the joint back to the limit. Can not be used in combination with restitution>0 (for details see the docu on restitution). The applied force will be proportional to the length/angle by which the limit is violated. Let the violation be defined as geometricError = jointPosition - highLimit if jointPosition > highLimit, and geometricError = jointPosition - lowLimit if jointPosition < lowLimit (jointPosition being an angle in the case of an angular joint axis). In addition, a damping term can be specified (see attribute damping) such that the applied force can be roughly defined as: F = (stiffness * geometricError) - (damping * jointVelocity). Note that an implicit time-stepping scheme will be used to compute the force. The soft constraint will only be active when the distance/angle between the joint frame origins/orientations is below the “low” limit value or above the “high” limit value (see PhysicsLimitAPI). Range: [0, inf) Units: linear - force / distance angular - torque / degrees.
Declaration
float stiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingAttr() const#
Damping for spring-damper limit dynamics. If greater than zero, the limit is soft, i.e. a spring pulls the joint back to the limit. See the documentation of the stiffness attribute for details. Range: [0, inf) Units: linear - force / distance * seconds angular - torque / degrees * seconds.
Declaration
float damping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxLimit#
Return a PhysxSchemaPhysxLimitAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxLimitAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxLimitAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxLimitAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxLimitAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxLimitAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxLimitAPI.
-
static bool IsPhysxLimitAPIPath(const SdfPath &path, TfToken *name)#
Checks if the given path
path
is of an API schema of type PhysxLimitAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxLimitAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxLimitAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxLimitAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxLimitAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxLimitAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxMaterialAPI : public UsdAPISchemaBase#
PhysX material extended parameters.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxMaterialAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxMaterialAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxMaterialAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxMaterialAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxMaterialAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxMaterialAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxMaterialAPI()#
Destructor.
-
UsdAttribute GetFrictionCombineModeAttr() const#
Determines the way in which two material properties will be combined to yield a friction coefficient for a collision.
Declaration
uniform token physxMaterial:frictionCombineMode = "average"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
average, min, multiply, max
- UsdAttribute CreateFrictionCombineModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionCombineModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestitutionCombineModeAttr() const#
Determines the way in which two material properties will be combined to yield a restitution coefficient for a collision.
Declaration
uniform token physxMaterial:restitutionCombineMode = "average"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
average, min, multiply, max
- UsdAttribute CreateRestitutionCombineModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestitutionCombineModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingCombineModeAttr() const#
Determines the way in which two material properties will be combined to yield a damping coefficient for a collision. This value is only relevant for compliant contact interactions.
Declaration
uniform token physxMaterial:dampingCombineMode = "average"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
average, min, multiply, max
- UsdAttribute CreateDampingCombineModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingCombineModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCompliantContactAccelerationSpringAttr() const#
If enabled, switches from force-based to acceleration-based compliant spring-damper contact effects. An acceleration-based spring-damper directly influences the acceleration of (rather than the force on) the contacting bodies, which makes the sink-in depth independent of the mass. The setting has no effect if compliant contacts are disabled, i.e., if the compliant contact stiffness is zero.
Declaration
bool physxMaterial:compliantContactAccelerationSpring = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateCompliantContactAccelerationSpringAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCompliantContactAccelerationSpringAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCompliantContactStiffnessAttr() const#
Spring stiffness for a compliant contact model using implicit springs. A higher stiffness results in behavior closer to a rigid contact. The compliant contact model is only enabled if the stiffness is larger than 0. Depending on the compliantContactAccelerationSpring setting, the stiffness is interpreted as a force or acceleration, respectively, per unit distance. Range: [0, inf) Units (force spring): force/distance = mass / seconds / seconds Units (acceleration spring): acceleration/distance = 1 / seconds / seconds.
Declaration
float physxMaterial:compliantContactStiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCompliantContactStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCompliantContactStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCompliantContactDampingAttr() const#
Damping coefficient for a compliant contact model using implicit springs. Ignored if compliant contacts are disabled (compliantContactStiffness is set to zero), in which case rigid contacts are active. Depending on the compliantContactAccelerationSpring setting, the damping is interpreted as a force or acceleration, respectively, per unit velocity. Range: [0, inf) Units (force spring): force / (distance / seconds) = mass / seconds Units (acceleration spring): acceleration / (distance / seconds) = 1 / seconds.
Declaration
float physxMaterial:compliantContactDamping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCompliantContactDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCompliantContactDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxMaterialAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxMaterialAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxMaterialAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxMaterialAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxMaterialAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxMaterialAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxMaterialAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxMeshMergeCollisionAPI : public UsdAPISchemaBase#
PhysxMeshMergeCollisionAPI enables implicit mesh merging of given meshes with respect to physics collision geometry representation. It is expected that this API extends the UsdPhysics.CollisionAPI definition, the UsdPhysics.CollisionAPI is still required to be present together with this API to define the collision properties. All meshes that belong to the collisionmeshes collection will be merged into one mesh that will be used for collision representation. Note that the collection can also define what meshes should be excluded from the selection.
This means that for example all meshes that belong to the collection will be represented as one convexHull rather than dozens of convexHulls per mesh.
It is possible to collect meshes through the collection that do not belong to the same hierarchy. This is allowed, however if the collisions are part of a rigid body, the meshes that do not belong to the rigid body hierarchy wont move. As defined in the rigid body specification, only rigid body transformation is updated.
Note that any changes to the meshes during runtime will get ignored.
Public Functions
- inline explicit PhysxSchemaPhysxMeshMergeCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxMeshMergeCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxMeshMergeCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxMeshMergeCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxMeshMergeCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxMeshMergeCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxMeshMergeCollisionAPI()#
Destructor.
-
UsdCollectionAPI GetCollisionMeshesCollectionAPI() const#
Return the UsdCollectionAPI interface used for defining what prims belong to the mesh merge API.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxMeshMergeCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxMeshMergeCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxMeshMergeCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxMeshMergeCollisionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxMeshMergeCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxMeshMergeCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxMeshMergeCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxMimicJointAPI : public UsdAPISchemaBase#
Applied to a Physics Joint that must be part of an articulation. Supported joint types are: PhysicsRevoluteJoint (with a limit set), PhysicsPrismaticJoint as well as the more generic PhysicsJoint if all linear degrees of freedom are locked.
This schema allows to interconnect the degrees of freedom of two joints according to the relationship: jointPosition + (gearing * referenceJointPosition) + offset = 0. This can be used to have, for example, one joint mimic the motion of another joint. The term “position” does not necessarily mean a translational unit, in the case of an angular degree of freedom it is an angle. The mimic joint operates on a single degree of freedom which is specified through the instance name of this multiple apply schema. The allowed instance name tokens are “rotX”, “rotY” and “rotZ”. See the documentation of the attribute referenceJointAxis for more info related to specifying the degree of freedom to operate on. Notes: 1) the two joints have to be part of the same articulation. 2) once the simulation has started, a significant performance penalty will be incurred if a mimic joint is added or removed, if the referenceJoint relationship is changed or if the referenceJointAxis attributes is modified. 3) the mimic joint relationship is interpreted as a two-way interaction and an impulse will get applied to the reference joint as well.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxMimicJointAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxMimicJointAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxMimicJointAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxMimicJoint:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxMimicJointAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxMimicJointAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxMimicJointAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxMimicJointAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetReferenceJointAxisAttr() const#
The axis that marks the degree of freedom of the reference joint to mimic. Has to be a valid degree of freedom on the reference joint. For joint types with a single degree of freedom (like PhysicsRevoluteJoint or PhysicsPrismaticJoint), this attribute will be ignored since the axis is defined implicitly. The mimic joint connects <targetJoint, targetJointAxis> to <referenceJoint, referenceJointAxis> with targetJoint being the prim that has PhysxMimicJointAPI applied and targetJointAxis being defined through the instance name token of PhysxMimicJointAPI.
Declaration
uniform token referenceJointAxis = "rotX"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
rotX, rotY, rotZ
- UsdAttribute CreateReferenceJointAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetReferenceJointAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGearingAttr() const#
The gearing coefficient (see relationship formulation in the documentation part of PhysxMimicJointAPI). Range: (-inf, inf) Units: unitless or degrees/distance or distance/degrees (the last two refer to scenarios where a linear degree of freedom is connected to an angular one or vice versa)
Declaration
float gearing = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGearingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGearingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetOffsetAttr() const#
The offset coefficient (see relationship formulation in the documentation part of PhysxMimicJointAPI). Range: (-inf, inf) Units: distance or degrees (depending on whether the mimic joint’s degree of freedom is linear or angular)
Declaration
float offset = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetReferenceJointRel() const#
The joint that shall be mimicked. Relationship to a prim that has the PhysicsJoint API schema applied. For the supported joint types, see the general documentation of PhysxMimicJointAPI. The reference joint as well as the joint that mimics the reference joint have to be part of the same articulation (see PhysicsArticulationRootAPI).
-
UsdRelationship CreateReferenceJointRel() const#
See GetReferenceJointRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Members
-
path physxMimicJoint#
Return a PhysxSchemaPhysxMimicJointAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxMimicJointAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxMimicJointAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxMimicJointAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxMimicJointAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxMimicJointAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxMimicJointAPI.
- static bool IsPhysxMimicJointAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxMimicJointAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxMimicJointAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxMimicJointAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxMimicJointAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxMimicJointAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxMimicJointAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleAnisotropyAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a PhysxParticleSystem. Defines settings to compute anisotropic scaling of particles in a post-processing step. The anisotropy post-processing only affects the rendering output including isosurface generation, and not the particle dynamics. Affects point instancer primitives with PhysxParticleSetAPI, which are defined as fluid.
Public Functions
- inline explicit PhysxSchemaPhysxParticleAnisotropyAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleAnisotropyAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleAnisotropyAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleAnisotropyAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleAnisotropyAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleAnisotropyAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleAnisotropyAPI()#
Destructor.
-
UsdAttribute GetParticleAnisotropyEnabledAttr() const#
Enables use of fluid anisotropy information for rendering.
Declaration
bool physxParticleAnisotropy:particleAnisotropyEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateParticleAnisotropyEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleAnisotropyEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetScaleAttr() const#
Scale of anisotropy for rendering. Range: [0, inf) Units: dimensionless.
Declaration
float physxParticleAnisotropy:scale = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinAttr() const#
Minimum scale of anisotropy relative to fluidRestOffset for rendering. Range: [0, max] Units: dimensionless.
Declaration
float physxParticleAnisotropy:min = 0.2
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxAttr() const#
Maximum scale of anisotropy relative to fluidRestOffset for rendering. Range: [min, inf) Units: dimensionless.
Declaration
float physxParticleAnisotropy:max = 2
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleAnisotropyAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleAnisotropyAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleAnisotropyAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxParticleAnisotropyAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleAnisotropyAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleAnisotropyAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleAnisotropyAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Do not apply. Provides parameters shared among particle objects.
Public Functions
- inline explicit PhysxSchemaPhysxParticleAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleAPI()#
Destructor.
-
UsdAttribute GetParticleEnabledAttr() const#
Enable or disable the particle object.
Declaration
bool physxParticle:particleEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateParticleEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSelfCollisionAttr() const#
Enables self-collision of the particles or of the particle object.
Declaration
bool physxParticle:selfCollision = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSelfCollisionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSelfCollisionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetParticleGroupAttr() const#
Group Id of the particles. Particles / objects in different groups in the same system collide with each other. Within the same group in the same system, the collision behavior is controlled by the selfCollision parameter. Range: [0, 2^20)
Declaration
int physxParticle:particleGroup = 0
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateParticleGroupAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleGroupAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetParticleSystemRel() const#
Single particle system that the particle-based object belongs to.
-
UsdRelationship CreateParticleSystemRel() const#
See GetParticleSystemRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxParticleAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleClothAPI : public UsdAPISchemaBase#
Deprecated: Will be replaced by a new deformable schema in a future release. WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a UsdGeomMesh. The mesh is simulated as a particle-based cloth or inflatable, depending on the mesh geometry and the pressure attribute. See PhysxAutoParticleClothAPI for an auto-compute helper for cloth springs and dampings.
Public Functions
- inline explicit PhysxSchemaPhysxParticleClothAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleClothAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleClothAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleClothAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleClothAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleClothAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleClothAPI()#
Destructor.
-
UsdAttribute GetSelfCollisionFilterAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Whether the simulation should filter particle-particle collisions based on their rest position distances.
Declaration
bool physxParticle:selfCollisionFilter = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSelfCollisionFilterAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSelfCollisionFilterAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestPointsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Particle positions in cloth rest configuration.
Declaration
point3f[] physxParticle:restPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateRestPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringIndicesAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. List of index pairs describing which points are connected by spring constraints.
Declaration
uniform int2[] physxParticle:springIndices
C++ Type
VtArray<GfVec2i>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int2Array
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSpringIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringStiffnessesAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Stiffness values for linear-distance springs between a pair of particles as defined by index pairs in springIndices. Range: [0, inf) Units: force / distance = mass / second / second.
Declaration
float[] physxParticle:springStiffnesses
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateSpringStiffnessesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringStiffnessesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringDampingsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Coefficients for linear-distance dampers between a pair of particles as defined by index pairs in springIndices. Range: [0, inf) Units: force * second / distance = mass / second.
Declaration
float[] physxParticle:springDampings
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateSpringDampingsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringDampingsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringRestLengthsAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Spring rest lengths corresponding to spring index pairs. Range: (-inf, inf) Units: distance.
Declaration
float[] physxParticle:springRestLengths
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateSpringRestLengthsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringRestLengthsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPressureAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Pressure: If > 0, a particle cloth has an additional pressure constraint that provides inflatable (i.e. balloon-like) dynamics. The pressure times the rest volume defines the volume the inflatable tries to match. Pressure only works well for closed or approximately closed meshes. Range: [0, inf) Units: dimensionless.
Declaration
float physxParticle:pressure = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePressureAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPressureAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleClothAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleClothAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleClothAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxParticleClothAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleClothAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleClothAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleClothAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleIsosurfaceAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a PhysxParticleSystem. Defines settings to extract an isosurface from the fluid particles in the particle system. The isosurface extraction is a post-processing step that does not affect the particle dynamics.
Public Functions
- inline explicit PhysxSchemaPhysxParticleIsosurfaceAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleIsosurfaceAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleIsosurfaceAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleIsosurfaceAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleIsosurfaceAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleIsosurfaceAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleIsosurfaceAPI()#
Destructor.
-
UsdAttribute GetIsosurfaceEnabledAttr() const#
Enable or disable the creation of an isosurface.
Declaration
bool physxParticleIsosurface:isosurfaceEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateIsosurfaceEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetIsosurfaceEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxVerticesAttr() const#
Maximum number of vertices the extracted isosurface can have. Range: [3, inf)
Declaration
uniform int physxParticleIsosurface:maxVertices = 1048576
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMaxVerticesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxVerticesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxTrianglesAttr() const#
Maximum number of triangles the extracted isosurface can have. Range: [1, inf)
Declaration
uniform int physxParticleIsosurface:maxTriangles = 2097152
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMaxTrianglesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxTrianglesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSubgridsAttr() const#
Maximum number of blocks the sparse grid structure can contain. Range: [1, inf)
Declaration
uniform int physxParticleIsosurface:maxSubgrids = 2048
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMaxSubgridsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSubgridsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGridSpacingAttr() const#
Cell Size of the grid used for isosurface extraction. Default value -inf results in a simulation-determined value. Range: [0, inf) Units: distance.
Declaration
float physxParticleIsosurface:gridSpacing = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGridSpacingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGridSpacingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSurfaceDistanceAttr() const#
Distance from particle center to isosurface. Default value -inf results in a simulation-determined value. Range: [0, 2.5*gridSpacing) Units: distance.
Declaration
float physxParticleIsosurface:surfaceDistance = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSurfaceDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSurfaceDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGridFilteringPassesAttr() const#
Grid filtering sequence, defined as capital letters “S”:Smooth, “G”:Grow, “R”:Reduce. Up to 32 passes.
Declaration
string physxParticleIsosurface:gridFilteringPasses = "GSRS"
C++ Type
std::string
Usd_Datatypes “Usd Type”
SdfValueTypeNames->String
- UsdAttribute CreateGridFilteringPassesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGridFilteringPassesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGridSmoothingRadiusAttr() const#
The radius used during the smoothing process on the grid. Default value -inf results in a simulation-determined value. Range: [0, inf) Units: dimensionless.
Declaration
float physxParticleIsosurface:gridSmoothingRadius = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGridSmoothingRadiusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGridSmoothingRadiusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetNumMeshSmoothingPassesAttr() const#
Number of smoothing passes applied to the generated isosurface triangle mesh. Range: [0, inf)
Declaration
int physxParticleIsosurface:numMeshSmoothingPasses = 4
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateNumMeshSmoothingPassesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNumMeshSmoothingPassesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetNumMeshNormalSmoothingPassesAttr() const#
Number of smoothing passes applied to the normals of the generated isosurface triangle mesh. Range: [0, inf)
Declaration
int physxParticleIsosurface:numMeshNormalSmoothingPasses = 4
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateNumMeshNormalSmoothingPassesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNumMeshNormalSmoothingPassesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleIsosurfaceAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleIsosurfaceAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleIsosurfaceAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxParticleIsosurfaceAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleIsosurfaceAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleIsosurfaceAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleIsosurfaceAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleSamplingAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a UsdGeomMesh which is Poisson-sampled to generate particles in the particles relationship.
Public Functions
- inline explicit PhysxSchemaPhysxParticleSamplingAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleSamplingAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleSamplingAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleSamplingAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleSamplingAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleSamplingAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleSamplingAPI()#
Destructor.
-
UsdAttribute GetSamplingDistanceAttr() const#
The distance between the sampled positions. In general, choose a value larger than the corresponding particle rest offset. Default value zero means that a suitable value is auto-determined. Range: [0, inf) Units: distance.
Declaration
float physxParticleSampling:samplingDistance = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSamplingDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSamplingDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVolumeAttr() const#
Whether to sample points inside the mesh or not.
Declaration
bool physxParticleSampling:volume = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateVolumeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVolumeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSamplesAttr() const#
Approximate upper bound on the number of samples. Zero means unbounded. Range: [0, inf)
Declaration
int physxParticleSampling:maxSamples = 50000
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxSamplesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSamplesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetParticlesRel() const#
Relationship to the particle set sampled from the mesh.
-
UsdRelationship CreateParticlesRel() const#
See GetParticlesRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleSamplingAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleSamplingAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleSamplingAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxParticleSamplingAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleSamplingAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleSamplingAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleSamplingAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleSetAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a UsdGeomPointInstancer or a UsdGeomPointBased. Creates a set of particles for granular (i.e. solid-particle) material or fluid simulation with PhysX.
Public Functions
- inline explicit PhysxSchemaPhysxParticleSetAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleSetAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleSetAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleSetAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleSetAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleSetAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleSetAPI()#
Destructor.
-
UsdAttribute GetFluidAttr() const#
Flag to toggle simulation as fluid (True) or solid (False).
Declaration
bool physxParticle:fluid = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateFluidAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFluidAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSimulationPointsAttr() const#
This attribute is read-only and is updated from simulation to capture particle-simulation state while smoothed position data is written to the render position/points attribute of the UsdGeomPointInstancer/UsdGeomPoints.
Declaration
point3f[] physxParticle:simulationPoints
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreateSimulationPointsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSimulationPointsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleSetAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleSetAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleSetAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxParticleSetAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleSetAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleSetAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleSetAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleSmoothingAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a PhysxParticleSystem. Controls smoothing of simulated particle positions in a post-processing step. The smoothing post-processing only affects the rendering output including isosurface generation, and not the particle dynamics. Affects point based primitives with PhysxParticleSetAPI, which are defined as fluid.
Public Functions
- inline explicit PhysxSchemaPhysxParticleSmoothingAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleSmoothingAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleSmoothingAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleSmoothingAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleSmoothingAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleSmoothingAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleSmoothingAPI()#
Destructor.
-
UsdAttribute GetParticleSmoothingEnabledAttr() const#
Enable or disable smoothingStrength of particle positions.
Declaration
bool physxParticleSmoothing:particleSmoothingEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateParticleSmoothingEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleSmoothingEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStrengthAttr() const#
Smoothing coefficient for particle positions. Range: [0, 1] Units: dimensionless.
Declaration
float physxParticleSmoothing:strength = 0.8
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStrengthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStrengthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleSmoothingAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleSmoothingAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleSmoothingAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxParticleSmoothingAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxParticleSmoothingAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxParticleSmoothingAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxParticleSmoothingAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxParticleSystem : public UsdGeomGprim#
WARNING: This is a draft API; the design is not fixed and may change in the future. PhysX particle system, used to simulate fluids, cloth and inflatables. This prim allows the user to configure the solver parameters that are common to the particle objects associated with this system via their particleSystem relationship.
Public Functions
- inline explicit PhysxSchemaPhysxParticleSystem(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxParticleSystem on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxParticleSystem::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxParticleSystem(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxParticleSystem on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxParticleSystem(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxParticleSystem()#
Destructor.
-
UsdAttribute GetParticleSystemEnabledAttr() const#
Enable or disable the particle system.
Declaration
bool particleSystemEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateParticleSystemEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleSystemEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetContactOffsetAttr() const#
Contact offset used for collisions with non-particle objects such as rigid or deformable bodies. Must be larger than restOffset. Default value -inf results in a simulation-determined value. Range: (restOffset, inf) Units: distance.
Declaration
float contactOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateContactOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetContactOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestOffsetAttr() const#
Rest offset used for collisions with non-particle objects such as rigid or deformable bodies. Must be smaller than contact offset. Default value -inf results in a simulation-determined value. Range: [0, contactOffset) Units: distance.
Declaration
float restOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRestOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetParticleContactOffsetAttr() const#
Contact offset used for interactions between particles. Must be larger than solid and fluid rest offsets. Range: (max(solidRestOffset, fluidRestOffset), inf) Units: distance.
Declaration
float particleContactOffset = 0.05
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateParticleContactOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleContactOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolidRestOffsetAttr() const#
Rest offset used for solid-solid or solid-fluid particle interactions. Must be smaller than particleContactOffset. Default value -inf results in a simulation-determined value. Range: [0, particleContactOffset) Units: distance.
Declaration
float solidRestOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSolidRestOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolidRestOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFluidRestOffsetAttr() const#
Rest offset used for fluid-fluid particle interactions. Must be smaller than particleContactOffset. Default value -inf results in a simulation-determined value. Range: [0, particleContactOffset) Units: distance.
Declaration
float fluidRestOffset = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFluidRestOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFluidRestOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableCCDAttr() const#
Enable continuous collision detection for particles to help avoid tunneling effects.
Declaration
bool enableCCD = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableCCDAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableCCDAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverPositionIterationCountAttr() const#
Number of solver iterations for position. Range: [1, 255].
Declaration
int solverPositionIterationCount = 16
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateSolverPositionIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverPositionIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxDepenetrationVelocityAttr() const#
The maximum velocity permitted to be introduced by the solver to depenetrate intersecting particles. Range: [0, inf) Units: distance / seconds.
Declaration
float maxDepenetrationVelocity = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxDepenetrationVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxDepenetrationVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWindAttr() const#
The wind applied to the current particle system. Range: (-inf, inf) Units: distance / seconds.
Declaration
float3 wind = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateWindAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWindAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxNeighborhoodAttr() const#
Defines how many particle neighbors per particle may be considered for interaction computations.
Declaration
int maxNeighborhood = 96
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxNeighborhoodAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxNeighborhoodAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetNeighborhoodScaleAttr() const#
Defines by how much the default neighborhood volume is inflated to ensure that all relevant neighboring particles are found while particles interact. Simulations with high relative velocities might require larger volumes. Range: [1, inf)
Declaration
float neighborhoodScale = 1.01
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateNeighborhoodScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNeighborhoodScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxVelocityAttr() const#
Maximum particle velocity. See also cflCoefficient in PhysxPBDMaterialAPI for limiting particle-particle relative velocity. Range: [0, inf) Units: distance / seconds.
Declaration
float maxVelocity = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGlobalSelfCollisionEnabledAttr() const#
If True, self collisions follow particle-object-specific settings. If False, all particle self collisions are disabled, regardless of any other settings. Improves performance if self collisions are not needed.
Declaration
bool globalSelfCollisionEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateGlobalSelfCollisionEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGlobalSelfCollisionEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetNonParticleCollisionEnabledAttr() const#
Enable or disable particle collision with nonparticle objects for all particles in the system. Improves performance if nonparticle collisions are not needed.
Declaration
bool nonParticleCollisionEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateNonParticleCollisionEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNonParticleCollisionEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetSimulationOwnerRel() const#
Single PhysicsScene that simulates this particle system. By default, this is the first PhysicsScene found in the stage using UsdStage::Traverse().
-
UsdRelationship CreateSimulationOwnerRel() const#
See GetSimulationOwnerRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxParticleSystem Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxParticleSystem holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxParticleSystem(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxParticleSystem Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPBDMaterialAPI : public UsdAPISchemaBase#
WARNING: This is a draft API; the design is not fixed and may change in the future. Applied to a USD Material. PhysX position-based-dynamics (PBD) material for particles used to simulate fluids, cloth and inflatables. Currently, only a single material per particle system is supported which applies to all objects that are associated with the system.
Public Functions
- inline explicit PhysxSchemaPhysxPBDMaterialAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPBDMaterialAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPBDMaterialAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPBDMaterialAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPBDMaterialAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPBDMaterialAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPBDMaterialAPI()#
Destructor.
-
UsdAttribute GetFrictionAttr() const#
Friction coefficient. The maximal friction force tangential to the surface is equal to the normal force times the friction. The friction takes effect in all interactions between particles and rigids or deformables. For solid particle-particle interactions it is multiplied by the particle friction scale. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:friction = 0.2
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFrictionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetParticleFrictionScaleAttr() const#
Coefficient that scales friction for solid particle-particle interations. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:particleFrictionScale = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateParticleFrictionScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleFrictionScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingAttr() const#
Global velocity damping coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:damping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetViscosityAttr() const#
Viscosity for fluid particles. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:viscosity = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateViscosityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetViscosityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVorticityConfinementAttr() const#
Vorticity confinement for fluid particles. Helps prevent energy loss due to numerical solver by adding vortex-like accelerations to the particles. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:vorticityConfinement = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateVorticityConfinementAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVorticityConfinementAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSurfaceTensionAttr() const#
Surface tension for fluid particles. Range: [0, inf) Units: 1 / (distance * distance * distance)
Declaration
float physxPBDMaterial:surfaceTension = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSurfaceTensionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSurfaceTensionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCohesionAttr() const#
Cohesion for interaction between fluid particles. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:cohesion = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCohesionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCohesionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAdhesionAttr() const#
Adhesion for interactions between particles (solid or fluid), and rigids or deformables. Adhesion also applies to solid-solid particle interactions, but is multiplied with the particle adhesion scale. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:adhesion = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAdhesionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAdhesionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetParticleAdhesionScaleAttr() const#
Coefficient that scales adhesion for solid particle-particle interations. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:particleAdhesionScale = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateParticleAdhesionScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParticleAdhesionScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAdhesionOffsetScaleAttr() const#
Offset scale defining the offset at which adhesion ceases to take effect. For interactions between particles (fluid or solid), and rigids or deformables, the adhesion offset is defined relative to the rest offset. For solid particle-particle interactions, the adhesion offset is defined relative to the solid rest offset. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:adhesionOffsetScale = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAdhesionOffsetScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAdhesionOffsetScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGravityScaleAttr() const#
Gravitational acceleration scaling factor, for example (-1.0 would invert gravity). Range: (-inf, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:gravityScale = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGravityScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGravityScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLiftAttr() const#
Deprecated. PhysxParticleClothAPI is deprecated and will be replaced by a new deformable schema in a future release. Particle cloth Lift coefficient for cloth and inflatable particle objects. Basic aerodynamic lift model coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:lift = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLiftAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLiftAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDragAttr() const#
Deprecated. PhysxParticleClothAPI is deprecated and will be replaced by a new deformable schema in a future release. Drag coefficient for cloth and inflatable particle objects. Basic aerodynamic drag model coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:drag = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDragAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDragAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDensityAttr() const#
Density used to compute particle object mass. If set to 0.0, the simulation determines a default density. A density or mass set with a PhysicsMassAPI on a particle object overrides the material density. Range: [0, inf) Units: mass / distance / distance / distance.
Declaration
float physxPBDMaterial:density = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDensityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDensityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCflCoefficientAttr() const#
This coefficient scales the CFL term used to limit relative motion between approaching fluid particles. A very large value disables the limit. Range: [0, inf) Units: dimensionless.
Declaration
float physxPBDMaterial:cflCoefficient = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCflCoefficientAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCflCoefficientAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPBDMaterialAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPBDMaterialAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPBDMaterialAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxPBDMaterialAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxPBDMaterialAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxPBDMaterialAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxPBDMaterialAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPhysicsAttachment : public UsdTyped#
Deprecated: Will be replaced by a new deformable schema in a future release. Represents attachments between physics actors, for example, between a rigid body and a deformable body, or a deformable body and a particle cloth.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxPhysicsAttachment(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPhysicsAttachment on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPhysicsAttachment::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPhysicsAttachment(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPhysicsAttachment on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPhysicsAttachment(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPhysicsAttachment()#
Destructor.
-
UsdAttribute GetAttachmentEnabledAttr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Enable or disable the attachment.
Declaration
bool attachmentEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateAttachmentEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAttachmentEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPoints0Attr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Attachment points in Actor 0 local space, defined in the actor’s rest state, if it is deformable. Elements correspond one-to-one to elements in points1 attribute.
Declaration
point3f[] points0
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreatePoints0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPoints0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPoints1Attr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Attachment points in Actor 1 local space, defined in the actor’s rest state, if it is deformable. Elements correspond one-to-one to elements in points0 attribute.
Declaration
point3f[] points1
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreatePoints1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPoints1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionFilterIndices0Attr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Indices to geometry of Actor 0 that should not generate collisions with Actor 1 as specified by filterType0. Ignored for rigid bodies.
Declaration
uint[] collisionFilterIndices0
C++ Type
VtArray<unsigned int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UIntArray
- UsdAttribute CreateCollisionFilterIndices0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionFilterIndices0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFilterType0Attr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Specify if indices in collisionFilterIndices0 correspond to vertices; or mesh cell-geometry, i.e. triangles, tetrahedrons, etc.
Declaration
uniform token filterType0
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
Vertices, Geometry
- UsdAttribute CreateFilterType0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFilterType0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionFilterIndices1Attr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Indices to mesh triangle/tet/hex/etc. of Actor 1 that should not generate collisions with Actor 0. Ignored for rigid bodies.
Declaration
uint[] collisionFilterIndices1
C++ Type
VtArray<unsigned int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UIntArray
- UsdAttribute CreateCollisionFilterIndices1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionFilterIndices1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFilterType1Attr() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Specify if indices in collisionFilterIndices1 correspond to vertices; or mesh cell-geometry, i.e. triangles, tetrahedrons, etc.
Declaration
uniform token filterType1
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
Vertices, Geometry
- UsdAttribute CreateFilterType1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFilterType1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetActor0Rel() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Reference to the first actor.
-
UsdRelationship CreateActor0Rel() const#
See GetActor0Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetActor1Rel() const#
Deprecated: Will be replaced by a new deformable schema in a future release. Reference to the second actor.
-
UsdRelationship CreateActor1Rel() const#
See GetActor1Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdAttribute GetPointsAttr(int index) const#
Helper attribute access via index in [0,1]. See GetPoints0Attr() and GetPoints1Attr()
-
UsdAttribute GetCollisionFilterIndicesAttr(int index) const#
Helper attribute access via index in [0,1]. See GetCollisionFilterIndices0Attr() and GetCollisionFilterIndices1Attr()
-
UsdAttribute GetFilterTypeAttr(int index) const#
Helper attribute access via index in [0,1]. See GetFilterType0Attr() and GetFilterType1Attr()
-
UsdRelationship GetActorRel(int index) const#
Helper attribute access via index in [0,1]. See GetActor0Rel() and GetActor1Rel()
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPhysicsAttachment Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPhysicsAttachment holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPhysicsAttachment(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxPhysicsAttachment Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPhysicsDistanceJointAPI : public UsdAPISchemaBase#
PhysX distance joint extended parameters. Can be applied to a PhysicsDistanceJoint prim.
Public Functions
- inline explicit PhysxSchemaPhysxPhysicsDistanceJointAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPhysicsDistanceJointAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPhysicsDistanceJointAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPhysicsDistanceJointAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPhysicsDistanceJointAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPhysicsDistanceJointAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPhysicsDistanceJointAPI()#
Destructor.
-
UsdAttribute GetSpringEnabledAttr() const#
If enabled, a spring/damper, i.e., soft constraint, will be used to maintain the desired distance range defined by the joint. The soft constraint will only be active when the distance between the joint frame origins is below minDistance or above maxDistance (see PhysicsDistanceJoint).
Declaration
bool physxPhysicsDistanceJoint:springEnabled = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSpringEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringStiffnessAttr() const#
Spring stiffness to use to resolve violation of the specified joint distance range. Will be ignored unless springEnabled is set to true. The applied force will be proportional to the length by which the distance range is violated. Let the violation be defined as geometricError = actualDistance - maxDistance if actualDistance > maxDistance, and geometricError = actualDistance - minDistance if actualDistance < minDistance. In addition, a damping term can be specified (see attribute springDamping) such that the applied force can be roughly defined as: F = (springStiffness * geometricError) - (springDamping * jointVelocity). Note that an implicit time-stepping scheme will be used to compute the force. Range: [0, inf) Units: force / distance = mass / seconds^2.
Declaration
float physxPhysicsDistanceJoint:springStiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringDampingAttr() const#
Spring damping to use to resolve violation of the specified joint distance range. Will be ignored unless springEnabled is set to true. See attribute springStiffness for details. Range: [0, inf) Units: force * seconds / distance = mass / seconds.
Declaration
float physxPhysicsDistanceJoint:springDamping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPhysicsDistanceJointAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPhysicsDistanceJointAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPhysicsDistanceJointAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxPhysicsDistanceJointAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxPhysicsDistanceJointAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxPhysicsDistanceJointAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxPhysicsDistanceJointAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPhysicsGearJoint : public UsdPhysicsJoint#
A gear joint connects two existing revolute (a.k.a. hinge) joints and constrains the angular velocities of involved rigid bodies. If omega0 is the angular velocity of the first rigid body around the PhysicsRevoluteJoint axis, omega1 is the angular velocity of the second rigid body around the PhysicsRevoluteJoint axis, and R is the gear ratio, then the enforced constraint is abs(omega1) = abs(omega0) * R. The equation is valid for the absolute values of angular velocities. The angular velocities may otherwise have opposite signs, depending on the orientations of the joint frames. Gear joints can be used with GPU simulation but in that case these specific joints will run through the CPU pipeline. If a gear joint is created between articulation revolute joints, excludeFromArticulation must be set to true for the gear joint itself, otherwise an error occurs. To include the gear joint in the articulation itself, please use PhysxMimicJointAPI instead to implement a gear joint. A known limitation is that current implementation does not work for planetary gears.
Public Functions
- inline explicit PhysxSchemaPhysxPhysicsGearJoint(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPhysicsGearJoint on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPhysicsGearJoint::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPhysicsGearJoint(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPhysicsGearJoint on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPhysicsGearJoint(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPhysicsGearJoint()#
Destructor.
-
UsdAttribute GetGearRatioAttr() const#
Gear ratio. For two gears with N0 and N1 teeth respectively, the gear ratio should be N0/N1. Range: (-inf, inf) Units: dimensionless.
Declaration
float physics:gearRatio = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGearRatioAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGearRatioAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetHinge0Rel() const#
Relationship to first hinge joint. It should be a PhysicsRevoluteJoint. It is mandatory to define one (and only one) relationship here.
-
UsdRelationship CreateHinge0Rel() const#
See GetHinge0Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetHinge1Rel() const#
Relationship to second hinge joint. It should be a PhysicsRevoluteJoint. It is mandatory to define one (and only one) relationship here.
-
UsdRelationship CreateHinge1Rel() const#
See GetHinge1Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdAttribute GetLocalPos0Attr() const#
Relative position of the joint frame to body0’s frame.
Declaration
point3f physics:localPos0 = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateLocalPos0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalPos0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalRot0Attr() const#
Relative orientation of the joint frame to body0’s frame.
Declaration
quatf physics:localRot0 = (1, 0, 0, 0)
C++ Type
GfQuatf
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Quatf
- UsdAttribute CreateLocalRot0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalRot0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalPos1Attr() const#
Relative position of the joint frame to body1’s frame.
Declaration
point3f physics:localPos1 = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateLocalPos1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalPos1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalRot1Attr() const#
Relative orientation of the joint frame to body1’s frame.
Declaration
quatf physics:localRot1 = (1, 0, 0, 0)
C++ Type
GfQuatf
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Quatf
- UsdAttribute CreateLocalRot1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalRot1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetJointEnabledAttr() const#
Determines if the joint is enabled.
Declaration
bool physics:jointEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateJointEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetJointEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionEnabledAttr() const#
Determines if the jointed subtrees should collide or not.
Declaration
bool physics:collisionEnabled = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateCollisionEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetExcludeFromArticulationAttr() const#
Determines if the joint can be included in an Articulation.
Declaration
uniform bool physics:excludeFromArticulation = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateExcludeFromArticulationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetExcludeFromArticulationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBreakForceAttr() const#
Joint break force. If set, joint is to break when this force limit is reached. (Used for linear DOFs.) Units: mass * distance / second / second.
Declaration
float physics:breakForce = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBreakForceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBreakForceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBreakTorqueAttr() const#
Joint break torque. If set, joint is to break when this torque limit is reached. (Used for angular DOFs.) Units: mass * distance * distance / second / second.
Declaration
float physics:breakTorque = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBreakTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBreakTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetBody0Rel() const#
Relationship to any UsdGeomXformable.
-
UsdRelationship CreateBody0Rel() const#
See GetBody0Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetBody1Rel() const#
Relationship to any UsdGeomXformable.
-
UsdRelationship CreateBody1Rel() const#
See GetBody1Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPhysicsGearJoint Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPhysicsGearJoint holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPhysicsGearJoint(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxPhysicsGearJoint Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPhysicsInstancer : public UsdGeomImageable#
Core class for instancing physics prims.
Subclassed by PhysxSchemaPhysxPhysicsJointInstancer
Public Functions
- inline explicit PhysxSchemaPhysxPhysicsInstancer(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPhysicsInstancer on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPhysicsInstancer::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPhysicsInstancer(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPhysicsInstancer on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPhysicsInstancer(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPhysicsInstancer()#
Destructor.
-
UsdAttribute GetPhysicsProtoIndicesAttr() const#
Required property. A list of instances to create from the prototypes defined in the prototypes relationship. Every entry represents an instance and the corresponding index value points to the prototype to create the instance from. For example, an entry of 1 results in an instance to be created of the prototype defined in prototypes[1]. Topology attribute - can be animated, but at a potential performance impact for streaming.
Declaration
int[] physics:protoIndices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreatePhysicsProtoIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsProtoIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetPhysicsPrototypesRel() const#
Required property. Orders and targets the prototype root prims, which can be located anywhere in the scenegraph that is convenient, although we promote organizing prototypes as children of the PhysxPhysicsInstancer. The position of a prototype in this relationship defines the value an instance would specify in the protoIndices attribute to instance that prototype. Since relationships are uniform, this property cannot be animated.
-
UsdRelationship CreatePhysicsPrototypesRel() const#
See GetPhysicsPrototypesRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPhysicsInstancer Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPhysicsInstancer holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPhysicsInstancer(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxPhysicsInstancer Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPhysicsJointInstancer : public PhysxSchemaPhysxPhysicsInstancer#
Class to instance physics joints from a set of prototype joints. The prototypes in the PhysxPhysicsInstancer base class (see prototypes relationship) are expected to be UsdPhysicsJoint prim types.
Public Functions
- inline explicit PhysxSchemaPhysxPhysicsJointInstancer(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPhysicsJointInstancer on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPhysicsJointInstancer::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPhysicsJointInstancer(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPhysicsJointInstancer on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPhysicsJointInstancer(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPhysicsJointInstancer()#
Destructor.
-
UsdAttribute GetPhysicsBody0IndicesAttr() const#
Optional property. Only applicable if body0s is a point instancer. An index specifies the per-instance body0 rel as the rigid body at the body0s-instancer’s protoIndices[index].
Declaration
int[] physics:body0Indices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreatePhysicsBody0IndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsBody0IndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPhysicsBody1IndicesAttr() const#
Optional property. Only applicable if body1s is a point instancer. An index specifies the per-instance body1 rel as the rigid body at the body1s-instancer’s protoIndices[index].
Declaration
int[] physics:body1Indices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreatePhysicsBody1IndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsBody1IndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPhysicsLocalPos0sAttr() const#
Required property. Per-instance localPos0. This transformation is added on top of the joint localPos0.
Declaration
point3f[] physics:localPos0s
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreatePhysicsLocalPos0sAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsLocalPos0sAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPhysicsLocalRot0sAttr() const#
Required property. Per-instance localRot0. This transformation is added on top of the joint localRot0.
Declaration
quath[] physics:localRot0s
C++ Type
VtArray<GfQuath>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->QuathArray
- UsdAttribute CreatePhysicsLocalRot0sAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsLocalRot0sAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPhysicsLocalPos1sAttr() const#
Required property. Per-instance localPos1. This transformation is added on top of the joint localPos1.
Declaration
point3f[] physics:localPos1s
C++ Type
VtArray<GfVec3f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3fArray
- UsdAttribute CreatePhysicsLocalPos1sAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsLocalPos1sAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPhysicsLocalRot1sAttr() const#
Required property. Per-instance localRot1. This transformation is added on top of the joint localRot1.
Declaration
quath[] physics:localRot1s
C++ Type
VtArray<GfQuath>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->QuathArray
- UsdAttribute CreatePhysicsLocalRot1sAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsLocalRot1sAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetPhysicsBody0sRel() const#
Required property. The rel must contain either exactly one UsdGeomPointInstancer that instances rigid bodies; or one or more rigid-body prims in the stage. If the rel is to a point instancer, the body0Indices must be specified.
-
UsdRelationship CreatePhysicsBody0sRel() const#
See GetPhysicsBody0sRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetPhysicsBody1sRel() const#
Required property. The rel must contain either exactly one UsdGeomPointInstancer that instances rigid bodies; or one or more rigid-body prims in the stage. If the rel is to a point instancer, the body1Indices must be specified.
-
UsdRelationship CreatePhysicsBody1sRel() const#
See GetPhysicsBody1sRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdAttribute GetPhysicsProtoIndicesAttr() const#
Required property. A list of instances to create from the prototypes defined in the prototypes relationship. Every entry represents an instance and the corresponding index value points to the prototype to create the instance from. For example, an entry of 1 results in an instance to be created of the prototype defined in prototypes[1]. Topology attribute - can be animated, but at a potential performance impact for streaming.
Declaration
int[] physics:protoIndices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreatePhysicsProtoIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysicsProtoIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetPhysicsPrototypesRel() const#
Required property. Orders and targets the prototype root prims, which can be located anywhere in the scenegraph that is convenient, although we promote organizing prototypes as children of the PhysxPhysicsInstancer. The position of a prototype in this relationship defines the value an instance would specify in the protoIndices attribute to instance that prototype. Since relationships are uniform, this property cannot be animated.
-
UsdRelationship CreatePhysicsPrototypesRel() const#
See GetPhysicsPrototypesRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPhysicsJointInstancer Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPhysicsJointInstancer holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPhysicsJointInstancer(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxPhysicsJointInstancer Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxPhysicsRackAndPinionJoint : public UsdPhysicsJoint#
A rack-and-pinion joint connects an existing revolute/hinge joint to an existing prismatic joint, and constrains the angular and linear velocities of involved rigid bodies. If omega is the angular velocity of the pinion rigid body around the PhysicsRevoluteJoint axis, V is the linear velocity of the rack rigid body along the PhysicsPrismaticJoint axis, and R is the ratio, then the enforced constraint is abs(omega) = abs(V) * R. The equation is valid for the absolute values of velocities. The velocities may otherwise have opposite signs, depending on the orientations of the joint frames. Rack-and-pinion joints can be used with GPU simulation but in that case these specific joints will run through the CPU pipeline. If a rack-and-pinion joint is created between articulation joints, excludeFromArticulation must be set to true for the rack-and-pinion joint itself, otherwise an error occurs. To include the rack-and-pinion joint in the articulation itself, please use PhysxMimicJointAPI instead to implement a rack-and-pinion joint.
Public Functions
- inline explicit PhysxSchemaPhysxPhysicsRackAndPinionJoint(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxPhysicsRackAndPinionJoint on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxPhysicsRackAndPinionJoint::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxPhysicsRackAndPinionJoint(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxPhysicsRackAndPinionJoint on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxPhysicsRackAndPinionJoint(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxPhysicsRackAndPinionJoint()#
Destructor.
-
UsdAttribute GetRatioAttr() const#
Ratio between angular and linear motion. For a rack of length L with N0 teeth and a pinion of N1 teeth, the ratio should be (PI * 2 * N0)/(L * N1). Range: (-inf, inf) Units: degrees / distance.
Declaration
float physics:ratio = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRatioAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRatioAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetHingeRel() const#
Relationship to the hinge joint. It should be a PhysicsRevoluteJoint. It is mandatory to define one (and only one) relationship here.
-
UsdRelationship CreateHingeRel() const#
See GetHingeRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetPrismaticRel() const#
Relationship to the prismatic joint. It should be a PhysicsPrismaticJoint. It is mandatory to define one (and only one) relationship here.
-
UsdRelationship CreatePrismaticRel() const#
See GetPrismaticRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdAttribute GetLocalPos0Attr() const#
Relative position of the joint frame to body0’s frame.
Declaration
point3f physics:localPos0 = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateLocalPos0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalPos0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalRot0Attr() const#
Relative orientation of the joint frame to body0’s frame.
Declaration
quatf physics:localRot0 = (1, 0, 0, 0)
C++ Type
GfQuatf
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Quatf
- UsdAttribute CreateLocalRot0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalRot0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalPos1Attr() const#
Relative position of the joint frame to body1’s frame.
Declaration
point3f physics:localPos1 = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateLocalPos1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalPos1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalRot1Attr() const#
Relative orientation of the joint frame to body1’s frame.
Declaration
quatf physics:localRot1 = (1, 0, 0, 0)
C++ Type
GfQuatf
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Quatf
- UsdAttribute CreateLocalRot1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalRot1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetJointEnabledAttr() const#
Determines if the joint is enabled.
Declaration
bool physics:jointEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateJointEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetJointEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionEnabledAttr() const#
Determines if the jointed subtrees should collide or not.
Declaration
bool physics:collisionEnabled = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateCollisionEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetExcludeFromArticulationAttr() const#
Determines if the joint can be included in an Articulation.
Declaration
uniform bool physics:excludeFromArticulation = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateExcludeFromArticulationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetExcludeFromArticulationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBreakForceAttr() const#
Joint break force. If set, joint is to break when this force limit is reached. (Used for linear DOFs.) Units: mass * distance / second / second.
Declaration
float physics:breakForce = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBreakForceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBreakForceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBreakTorqueAttr() const#
Joint break torque. If set, joint is to break when this torque limit is reached. (Used for angular DOFs.) Units: mass * distance * distance / second / second.
Declaration
float physics:breakTorque = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBreakTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBreakTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetBody0Rel() const#
Relationship to any UsdGeomXformable.
-
UsdRelationship CreateBody0Rel() const#
See GetBody0Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetBody1Rel() const#
Relationship to any UsdGeomXformable.
-
UsdRelationship CreateBody1Rel() const#
See GetBody1Rel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxPhysicsRackAndPinionJoint Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxPhysicsRackAndPinionJoint holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxPhysicsRackAndPinionJoint(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxPhysicsRackAndPinionJoint Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxResidualReportingAPI : public UsdAPISchemaBase#
Gives access to residual values that inform about the remaining physics solver error present during the last position and during the last velocity iteration. The residual reporting must be enabled on the Physics Scene, otherwise the reported values will be zero. The API can be applied to either:
Joints. The joint residual will be reported.
Articulation Roots. The RMS (root mean squared) and max value over all articulation joint residuals will be reported.
Physics Scene. The RMS and max value over all error/residual sources (including contacts) will be reported.
Public Functions
- inline explicit PhysxSchemaPhysxResidualReportingAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxResidualReportingAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxResidualReportingAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxResidualReportingAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxResidualReportingAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxResidualReportingAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxResidualReportingAPI()#
Destructor.
- UsdAttribute GetPhysxResidualReportingRmsResidualPositionIterationAttr(
The RMS (root mean squared) magnitude of the physics solver error during the last position iteration. Range: [0, inf) Units: dimensionless.
Declaration
float physxResidualReporting:rmsResidualPositionIteration = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePhysxResidualReportingRmsResidualPositionIterationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysxResidualReportingRmsResidualPositionIterationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
- UsdAttribute GetPhysxResidualReportingMaxResidualPositionIterationAttr(
The maximal magnitude of the physics solver error during the last position iteration. Range: [0, inf) Units: dimensionless.
Declaration
float physxResidualReporting:maxResidualPositionIteration = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePhysxResidualReportingMaxResidualPositionIterationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysxResidualReportingMaxResidualPositionIterationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
- UsdAttribute GetPhysxResidualReportingRmsResidualVelocityIterationAttr(
The RMS (root mean squared) magnitude of the physics solver error during the last velocity iteration. Range: [0, inf) Units: dimensionless.
Declaration
float physxResidualReporting:rmsResidualVelocityIteration = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePhysxResidualReportingRmsResidualVelocityIterationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysxResidualReportingRmsResidualVelocityIterationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
- UsdAttribute GetPhysxResidualReportingMaxResidualVelocityIterationAttr(
The maximal magnitude of the physics solver error during the last velocity iteration. Range: [0, inf) Units: dimensionless.
Declaration
float physxResidualReporting:maxResidualVelocityIteration = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePhysxResidualReportingMaxResidualVelocityIterationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPhysxResidualReportingMaxResidualVelocityIterationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxResidualReportingAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxResidualReportingAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxResidualReportingAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxResidualReportingAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxResidualReportingAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxResidualReportingAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxResidualReportingAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxRigidBodyAPI : public UsdAPISchemaBase#
PhysX rigid body extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxRigidBodyAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxRigidBodyAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxRigidBodyAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxRigidBodyAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxRigidBodyAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxRigidBodyAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxRigidBodyAPI()#
Destructor.
-
UsdAttribute GetLinearDampingAttr() const#
Linear damping coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxRigidBody:linearDamping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLinearDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLinearDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAngularDampingAttr() const#
Angular damping coefficient. Range: [0, inf) Units: dimensionless.
Declaration
float physxRigidBody:angularDamping = 0.05
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAngularDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAngularDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxLinearVelocityAttr() const#
Maximum allowable linear velocity for the rigid body. Range: [0, inf) Units: distance / seconds.
Declaration
float physxRigidBody:maxLinearVelocity = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxLinearVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxLinearVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxAngularVelocityAttr() const#
Maximum allowable angular velocity for rigid body. Range: [0, inf) Units: degrees / seconds.
Declaration
float physxRigidBody:maxAngularVelocity = 5729.58
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxAngularVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxAngularVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSleepThresholdAttr() const#
Mass-normalized kinetic energy threshold below which an actor may go to sleep. Range: [0, inf) Default: 0.00005 * tolerancesSpeed * tolerancesSpeed Units: distance * distance / seconds / seconds.
Declaration
float physxRigidBody:sleepThreshold = 0.00005
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSleepThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSleepThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStabilizationThresholdAttr() const#
Mass-normalized kinetic energy threshold below which an actor may participate in stabilization. Range: [0, inf) Default: 0.00001 * tolerancesSpeed * tolerancesSpeed Units: distance * distance / seconds / seconds.
Declaration
float physxRigidBody:stabilizationThreshold = 0.00001
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStabilizationThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStabilizationThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxDepenetrationVelocityAttr() const#
The maximum depenetration velocity permitted to be introduced by the solver. Range: [0, inf) Default: 5.0 * tolerancesLength Units: distance / seconds.
Declaration
float physxRigidBody:maxDepenetrationVelocity = 3
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxDepenetrationVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxDepenetrationVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxContactImpulseAttr() const#
Sets a limit on the impulse that may be applied at a contact. The maximum impulse at a contact between two dynamic or kinematic bodies will be the minimum of the two limit values. For a collision between a static and a dynamic body, the impulse is limited by the value for the dynamic body. Range: [0, inf) Units: force * seconds = mass * distance / seconds.
Declaration
float physxRigidBody:maxContactImpulse = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxContactImpulseAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxContactImpulseAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverPositionIterationCountAttr() const#
Solver position iteration counts for the body. Allowed range [1, 255].
Declaration
int physxRigidBody:solverPositionIterationCount = 16
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateSolverPositionIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverPositionIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverVelocityIterationCountAttr() const#
Solver velocity iteration counts for the body. Allowed range [0, 255].
Declaration
int physxRigidBody:solverVelocityIterationCount = 1
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateSolverVelocityIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverVelocityIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableCCDAttr() const#
Enables swept integration for the actor.
Declaration
bool physxRigidBody:enableCCD = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableCCDAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableCCDAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableSpeculativeCCDAttr() const#
Register a rigid body to dynamically adjust contact offset based on velocity. This can be used to achieve a CCD effect.
Declaration
bool physxRigidBody:enableSpeculativeCCD = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableSpeculativeCCDAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableSpeculativeCCDAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRetainAccelerationsAttr() const#
Carries over forces/accelerations between frames, rather than clearing them.
Declaration
bool physxRigidBody:retainAccelerations = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateRetainAccelerationsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRetainAccelerationsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableGyroscopicForcesAttr() const#
Enables computation of gyroscopic forces on the rigid body.
Declaration
bool physxRigidBody:enableGyroscopicForces = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableGyroscopicForcesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableGyroscopicForcesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDisableGravityAttr() const#
Disable gravity for the actor.
Declaration
bool physxRigidBody:disableGravity = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateDisableGravityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDisableGravityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolveContactAttr() const#
Process the contacts of this rigid body in the dynamics solver.
Declaration
bool physxRigidBody:solveContact = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSolveContactAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolveContactAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLockedPosAxisAttr() const#
Collection of flags providing a mechanism to lock motion along/around a specific axis (1 << 0, 1 << 1, 1 << 2).
Declaration
int physxRigidBody:lockedPosAxis = 0
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateLockedPosAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLockedPosAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLockedRotAxisAttr() const#
Collection of flags providing a mechanism to lock motion along/around a specific axis (1 << 0, 1 << 1, 1 << 2).
Declaration
int physxRigidBody:lockedRotAxis = 0
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateLockedRotAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLockedRotAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetContactSlopCoefficientAttr() const#
Tolerance on the angular influence of a contact that can help improve the behavior of rolling approximate collision shapes. Specifically, the angular component of a normal constraint in a contact is zeroed if normal.cross(offset) falls below this tolerance. The tolerance is scaled such that the behavior improvement persists through a range of angular velocities of a rolling shape. Range: [0, inf) Units: distance.
Declaration
float physxRigidBody:contactSlopCoefficient = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateContactSlopCoefficientAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetContactSlopCoefficientAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCfmScaleAttr() const#
The cfm scale term can help stabilize an articulation by weakening the constraint’s response. Use small values close to the default and typically in the range [0, 0.1] for best results. Note that this parameter is currently used only if rigid body is part of an articulation. Range: [0, 1] Units: unitless.
Declaration
float physxRigidBody:cfmScale = 0.025
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCfmScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCfmScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxRigidBodyAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxRigidBodyAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxRigidBodyAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxRigidBodyAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxRigidBodyAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxRigidBodyAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxRigidBodyAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxSceneAPI : public UsdAPISchemaBase#
PhysX scene extended parameters. Default PhysX material for the scene can be set by using material bind with purpose physics onto the PhysicsScene prim.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxSceneAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxSceneAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxSceneAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxSceneAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxSceneAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxSceneAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxSceneAPI()#
Destructor.
-
UsdAttribute GetBounceThresholdAttr() const#
A contact with a relative velocity below this will not bounce. Range: [0, inf) Default: 0 Units: distance / seconds.
Declaration
float physxScene:bounceThreshold = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBounceThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBounceThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFrictionOffsetThresholdAttr() const#
A threshold of contact separation distance used to decide if a contact point will experience friction forces. Range: [0, inf) Default: 0.04 * tolerancesLength Units: distance.
Declaration
float physxScene:frictionOffsetThreshold = 0.04
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFrictionOffsetThresholdAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionOffsetThresholdAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFrictionCorrelationDistanceAttr() const#
Friction correlation distance used to decide whether contacts are close enough to be merged into a single friction anchor point or not. Range: [0, inf) Default: 0.025 * tolerancesLength Units: distance.
Declaration
float physxScene:frictionCorrelationDistance = 0.025
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateFrictionCorrelationDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionCorrelationDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxBiasCoefficientAttr() const#
The maximum bias coefficient used in the constraint solver. Range: [0, inf) Units: dimensionless.
Declaration
float physxScene:maxBiasCoefficient = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxBiasCoefficientAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxBiasCoefficientAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCollisionSystemAttr() const#
Collision detection system.
Declaration
uniform token physxScene:collisionSystem = "PCM"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
PCM, SAT
- UsdAttribute CreateCollisionSystemAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCollisionSystemAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSolverTypeAttr() const#
Solver used for the simulation.
Declaration
uniform token physxScene:solverType = "TGS"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
PGS, TGS
- UsdAttribute CreateSolverTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSolverTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBroadphaseTypeAttr() const#
Broad phase algorithm used in the simulation.
Declaration
uniform token physxScene:broadphaseType = "GPU"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
GPU, MBP, SAP
- UsdAttribute CreateBroadphaseTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBroadphaseTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFrictionTypeAttr() const#
Deprecated since friction type “patch” is the only option now.
Friction type used in simulation.
Declaration
uniform token physxScene:frictionType = "patch"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
patch
- UsdAttribute CreateFrictionTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableCCDAttr() const#
Enables a second broad phase check after integration that makes it possible to prevent objects from tunneling through each other.
Declaration
bool physxScene:enableCCD = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableCCDAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableCCDAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableStabilizationAttr() const#
Enables additional stabilization pass in solver.
Declaration
bool physxScene:enableStabilization = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableStabilizationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableStabilizationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpdateTypeAttr() const#
Type of update for a PhysX scene.
Declaration
uniform token physxScene:updateType = "Synchronous"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
Synchronous, Asynchronous, Disabled
- UsdAttribute CreateUpdateTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpdateTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableGPUDynamicsAttr() const#
Enables the GPU dynamics pipeline. Required for GPU only features like deformables.
Declaration
bool physxScene:enableGPUDynamics = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableGPUDynamicsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableGPUDynamicsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableEnhancedDeterminismAttr() const#
Provides improved determinism at the expense of performance.
Declaration
bool physxScene:enableEnhancedDeterminism = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableEnhancedDeterminismAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableEnhancedDeterminismAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableResidualReportingAttr() const#
Calculates solver residuals and reports them through optional Residual Report APIs at a slight expense of performance.
Declaration
bool physxScene:enableResidualReporting = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableResidualReportingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableResidualReportingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableExternalForcesEveryIterationAttr() const#
Enables greater TGS solver stability.
Declaration
bool physxScene:enableExternalForcesEveryIteration = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableExternalForcesEveryIterationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableExternalForcesEveryIterationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetEnableSceneQuerySupportAttr() const#
Enables scene query support for collision shapes.
Declaration
bool physxScene:enableSceneQuerySupport = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableSceneQuerySupportAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableSceneQuerySupportAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTimeStepsPerSecondAttr() const#
Simulation scene step defined as number of steps per second. Note that application might cap the number of simulation steps to avoid running more simulations steps with a low frame rate.
Declaration
uint physxScene:timeStepsPerSecond = 60
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateTimeStepsPerSecondAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTimeStepsPerSecondAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuTempBufferCapacityAttr() const#
Gpu temp buffer capacity.
Declaration
uint64 physxScene:gpuTempBufferCapacity = 16777216
C++ Type
uint64_t
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt64
- UsdAttribute CreateGpuTempBufferCapacityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuTempBufferCapacityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuMaxRigidContactCountAttr() const#
Gpu max rigid contact count.
Declaration
uint physxScene:gpuMaxRigidContactCount = 524288
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuMaxRigidContactCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuMaxRigidContactCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuMaxRigidPatchCountAttr() const#
Gpu max rigid patch count.
Declaration
uint physxScene:gpuMaxRigidPatchCount = 81920
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuMaxRigidPatchCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuMaxRigidPatchCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuHeapCapacityAttr() const#
Gpu heap capacity.
Declaration
uint physxScene:gpuHeapCapacity = 67108864
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuHeapCapacityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuHeapCapacityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuFoundLostPairsCapacityAttr() const#
Gpu found lost pairs capacity.
Declaration
uint physxScene:gpuFoundLostPairsCapacity = 262144
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuFoundLostPairsCapacityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuFoundLostPairsCapacityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuFoundLostAggregatePairsCapacityAttr() const#
Gpu found lost aggregate pairs capacity.
Declaration
uint physxScene:gpuFoundLostAggregatePairsCapacity = 1024
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuFoundLostAggregatePairsCapacityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuFoundLostAggregatePairsCapacityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuTotalAggregatePairsCapacityAttr() const#
Gpu total aggregate pairs capacity.
Declaration
uint physxScene:gpuTotalAggregatePairsCapacity = 1024
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuTotalAggregatePairsCapacityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuTotalAggregatePairsCapacityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuMaxSoftBodyContactsAttr() const#
Gpu max soft body contacts.
Declaration
uint physxScene:gpuMaxSoftBodyContacts = 1048576
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuMaxSoftBodyContactsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuMaxSoftBodyContactsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuMaxDeformableSurfaceContactsAttr() const#
Gpu max deformable surface contacts.
Declaration
uint physxScene:gpuMaxDeformableSurfaceContacts = 1048576
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuMaxDeformableSurfaceContactsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuMaxDeformableSurfaceContactsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuMaxParticleContactsAttr() const#
Gpu max particle contacts.
Declaration
uint physxScene:gpuMaxParticleContacts = 1048576
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuMaxParticleContactsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuMaxParticleContactsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuMaxNumPartitionsAttr() const#
Limitation for the partitions in the GPU dynamics pipeline. This variable must be a power of 2. A value greater than 32 is currently not supported.
Declaration
uint physxScene:gpuMaxNumPartitions = 8
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuMaxNumPartitionsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuMaxNumPartitionsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetGpuCollisionStackSizeAttr() const#
Gpu collision stack size.
Declaration
uint physxScene:gpuCollisionStackSize = 67108864
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
- UsdAttribute CreateGpuCollisionStackSizeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGpuCollisionStackSizeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetInvertCollisionGroupFilterAttr() const#
Boolean attribute indicating whether inverted collision group filtering should be used. By default two collisions, that do have a collisionGroup set, collide with each other. Adding a collisionGroup into a collisionGroup filtering will mean that the collision between those groups will be disabled. This boolean attribute does invert the default behavior. Hence two collisions with defined collisionGroups will not collide with each other by default and one does enable the collisions between the groups through the “CollisionGroup” filtering.
Declaration
bool physxScene:invertCollisionGroupFilter = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateInvertCollisionGroupFilterAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetInvertCollisionGroupFilterAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetReportKinematicKinematicPairsAttr() const#
Boolean attribute indicating whether kinematic vs kinematic pairs generate contact reports.
Declaration
bool physxScene:reportKinematicKinematicPairs = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateReportKinematicKinematicPairsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetReportKinematicKinematicPairsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetReportKinematicStaticPairsAttr() const#
Boolean attribute indicating whether kinematic vs static pairs generate contact reports.
Declaration
bool physxScene:reportKinematicStaticPairs = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateReportKinematicStaticPairsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetReportKinematicStaticPairsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinPositionIterationCountAttr() const#
Minimum position iteration count for all actors (rigid bodies, cloth, particles etc). Range: [1, 255].
Declaration
uniform uint physxScene:minPositionIterationCount = 1
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMinPositionIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinPositionIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxPositionIterationCountAttr() const#
Maximum position iteration count for all actors (rigid bodies, cloth, particles etc). Note that this setting will override solver iteration settings of individual actors that have requested more iterations. Range: [1, 255].
Declaration
uniform uint physxScene:maxPositionIterationCount = 255
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMaxPositionIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxPositionIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinVelocityIterationCountAttr() const#
Minimum velocity iteration count for all actors (rigid bodies, cloth, particles etc). Range: [0, 255].
Declaration
uniform uint physxScene:minVelocityIterationCount = 0
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMinVelocityIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinVelocityIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxVelocityIterationCountAttr() const#
Maximum velocity iteration count for all actors (rigid bodies, cloth, particles etc). Note that this setting will override solver iteration settings of individual actors that have requested more iterations. Range: [0, 255].
Declaration
uniform uint physxScene:maxVelocityIterationCount = 255
C++ Type
unsigned int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->UInt
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateMaxVelocityIterationCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxVelocityIterationCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxSceneAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxSceneAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxSceneAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxSceneAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxSceneAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxSceneAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxSceneAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxSceneQuasistaticAPI : public UsdAPISchemaBase#
PhysxSceneQuasistaticAPI defines quasistatic mode for simulation. The API must be applied to a UsdPhysics.PhysicsScene prim.
In this mode actors are simulated/moved by the physics engine by obeying external forces and constraints as usual, but they do not accumulate momentum. So that e.g. falling due to gravity is with constant speed, and motion stops as soon as external forces cease to apply. There is no conservation of momentum.
By default all actors belonging to the scene have this behavior unless the collection does have the includes defined, then the collection definition does have a precendence.
Public Functions
- inline explicit PhysxSchemaPhysxSceneQuasistaticAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxSceneQuasistaticAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxSceneQuasistaticAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxSceneQuasistaticAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxSceneQuasistaticAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxSceneQuasistaticAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxSceneQuasistaticAPI()#
Destructor.
-
UsdAttribute GetEnableQuasistaticAttr() const#
Whether the actors should behave quasistatic or not.
Declaration
bool physxSceneQuasistatic:enableQuasistatic = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateEnableQuasistaticAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnableQuasistaticAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdCollectionAPI GetQuasistaticActorsCollectionAPI() const#
Return the UsdCollectionAPI interface used for defining what prims belong to the quasistatic API.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxSceneQuasistaticAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxSceneQuasistaticAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxSceneQuasistaticAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxSceneQuasistaticAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxSceneQuasistaticAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxSceneQuasistaticAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxSceneQuasistaticAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxSDFMeshCollisionAPI : public UsdAPISchemaBase#
PhysX SDF mesh extended parameters.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxSDFMeshCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxSDFMeshCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxSDFMeshCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxSDFMeshCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxSDFMeshCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxSDFMeshCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxSDFMeshCollisionAPI()#
Destructor.
-
UsdAttribute GetSdfResolutionAttr() const#
The spacing of the uniformly sampled SDF is equal to the largest AABB extent of the mesh, divided by the resolution. Choose the lowest possible resolution that provides acceptable performance; very high resolution results in large memory consumption, and slower cooking and simulation performance. Range: (1, inf)
Declaration
uniform int physxSDFMeshCollision:sdfResolution = 256
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSdfResolutionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfResolutionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSdfSubgridResolutionAttr() const#
A positive subgrid resolution enables sparsity on signed-distance-fields (SDF) while a value of 0 leads to the usage of a dense SDF. A value in the range of 4 to 8 is a reasonable compromise between block size and the overhead introduced by block addressing. The smaller a block, the more memory is spent on the address table. The bigger a block, the less precisely the sparse SDF can adapt to the mesh’s surface. In most cases sparsity reduces the memory consumption of a SDF significantly. Range: [0, inf)
Declaration
uniform int physxSDFMeshCollision:sdfSubgridResolution = 6
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSdfSubgridResolutionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfSubgridResolutionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSdfBitsPerSubgridPixelAttr() const#
Values of 8, 16 and 32 bits per subgrid pixel are supported. Dense SDFs always use 32 bits per pixel. The less bits per pixel, the smaller the resulting SDF but also the less precise. The SDF’s memory consumption scales proportionally with the number of bits per subgrid pixel.
Declaration
uniform token physxSDFMeshCollision:sdfBitsPerSubgridPixel = "BitsPerPixel16"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
BitsPerPixel8, BitsPerPixel16, BitsPerPixel32
- UsdAttribute CreateSdfBitsPerSubgridPixelAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfBitsPerSubgridPixelAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSdfNarrowBandThicknessAttr() const#
Size of the narrow band around the mesh surface where high resolution SDF samples are available. Outside of the narrow band, only low resolution samples are stored. Representing the narrow band thickness as a fraction of the mesh’s bounding box diagonal length ensures that it is scale independent. A value of 0.01 is usually large enough. The smaller the narrow band thickness, the smaller the memory consumption of the sparse SDF. Range: [0, 1] Units: dimensionless.
Declaration
uniform float physxSDFMeshCollision:sdfNarrowBandThickness = 0.01
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSdfNarrowBandThicknessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfNarrowBandThicknessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSdfMarginAttr() const#
Margin to increase the size of the SDF relative to the bounding box diagonal length of the mesh. A sdf margin value of 0.01 means the sdf boundary will be enlarged in any direction by 1% of the mesh’s bounding box diagonal length. Representing the margin relative to the bounding box diagonal length ensures that it is scale independent. Margins allow for precise distance queries in a region slightly outside of the mesh’s bounding box. Range: [0, inf) Units: dimensionless.
Declaration
uniform float physxSDFMeshCollision:sdfMargin = 0.01
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSdfMarginAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfMarginAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSdfEnableRemeshingAttr() const#
Enables optional remeshing as a preprocessing step before the SDF is computed. Remeshing can help generate valid SDF data even if the input mesh has bad properties like inconsistent winding or self-intersections. The SDF distances (and therefore the collisions) will be slightly less accurate when remeshing is enabled.
Declaration
uniform bool physxSDFMeshCollision:sdfEnableRemeshing = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSdfEnableRemeshingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfEnableRemeshingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSdfTriangleCountReductionFactorAttr() const#
Factor that quantifies the percentage of the input triangles to keep. 1 means the input triangle mesh does not get modified. 0.5 would mean that the triangle count gets reduced to half the amount of the original mesh such that the collider needs to process less data. This helps to speed up collision detection at the cost of a small geometric error. Range: [0, 1] Units: dimensionless.
Declaration
uniform float physxSDFMeshCollision:sdfTriangleCountReductionFactor = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateSdfTriangleCountReductionFactorAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSdfTriangleCountReductionFactorAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxSDFMeshCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxSDFMeshCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxSDFMeshCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxSDFMeshCollisionAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxSDFMeshCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxSDFMeshCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxSDFMeshCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxSphereFillCollisionAPI : public UsdAPISchemaBase#
PhysX sphere fill extended parameters.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxSphereFillCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxSphereFillCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxSphereFillCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxSphereFillCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxSphereFillCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxSphereFillCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxSphereFillCollisionAPI()#
Destructor.
-
UsdAttribute GetMaxSpheresAttr() const#
Maximum of spheres produced. Range (2, 4000)
Declaration
int physxSphereFillCollision:maxSpheres = 128
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateMaxSpheresAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSpheresAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVoxelResolutionAttr() const#
Voxel resolution used for the algorithm. Range (10 000, 1 000 000)
Declaration
int physxSphereFillCollision:voxelResolution = 50000
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateVoxelResolutionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVoxelResolutionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSeedCountAttr() const#
Seed count used for the algorithm. Range (16, 4000)
Declaration
int physxSphereFillCollision:seedCount = 1000
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateSeedCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSeedCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFillModeAttr() const#
Fill mode for the the algorithm.
Declaration
uniform token physxSphereFillCollision:fillMode = "flood"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
flood, raycast, surface
- UsdAttribute CreateFillModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFillModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxSphereFillCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxSphereFillCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxSphereFillCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxSphereFillCollisionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxSphereFillCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxSphereFillCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxSphereFillCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxSurfaceVelocityAPI : public UsdAPISchemaBase#
PhysxSurfaceVelocityAPI enables surface velocity simulation that injects velocity to the solver through internal contact modify callback. Surface velocity can be used typically for conveyer belt simulation. It must be applied to a prim with UsdPhysicsRigidBodyAPI.
Public Functions
- inline explicit PhysxSchemaPhysxSurfaceVelocityAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxSurfaceVelocityAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxSurfaceVelocityAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxSurfaceVelocityAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxSurfaceVelocityAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxSurfaceVelocityAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxSurfaceVelocityAPI()#
Destructor.
-
UsdAttribute GetSurfaceVelocityEnabledAttr() const#
Whether surface velocity is enabled or not.
Declaration
bool physxSurfaceVelocity:surfaceVelocityEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSurfaceVelocityEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSurfaceVelocityEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSurfaceVelocityLocalSpaceAttr() const#
Whether surface velocity is defined in body local space or in world space.
Declaration
bool physxSurfaceVelocity:surfaceVelocityLocalSpace = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateSurfaceVelocityLocalSpaceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSurfaceVelocityLocalSpaceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSurfaceVelocityAttr() const#
Surface linear velocity applied through contact modify callback. Units: distance/second.
Declaration
vector3f physxSurfaceVelocity:surfaceVelocity = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Vector3f
- UsdAttribute CreateSurfaceVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSurfaceVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSurfaceAngularVelocityAttr() const#
Surface angular velocity applied through contact modify callback. Units: degrees/second.
Declaration
vector3f physxSurfaceVelocity:surfaceAngularVelocity = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Vector3f
- UsdAttribute CreateSurfaceAngularVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSurfaceAngularVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxSurfaceVelocityAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxSurfaceVelocityAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxSurfaceVelocityAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxSurfaceVelocityAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxSurfaceVelocityAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxSurfaceVelocityAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxSurfaceVelocityAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTendonAttachmentAPI : public UsdAPISchemaBase#
WARNING: Draft API, this design is not fixed and may change in the future.
Applied to an articulation-link rigid-body Xformable.
A tendon attachment is part of a spatial tendon and is attached to an articulation link. The distance between the attachment and its parent attachment contributes to the length of the tendon, after scaling by the gearing attribute.
The localPos attribute defines the translational offset of the attachment in the link’s local frame; in particular, this means that the offset is scaled together with any scaling applied to the link.
An articulation link may have multiple distinct attachments that belong to the same or distinct spatial tendons; therefore, the spatial tendon APIs are multi-apply and each attachment must have a unique instance name that is used in parent-child relationships of the attachments.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxTendonAttachmentAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxTendonAttachmentAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxTendonAttachmentAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxTendon:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxTendonAttachmentAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxTendonAttachmentAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxTendonAttachmentAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTendonAttachmentAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetGearingAttr() const#
Attachment distance scaling factor. Range: (-inf, inf) Units: unitless.
Declaration
float gearing = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateGearingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGearingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLocalPosAttr() const#
Location of the attachment. Only considered if API is applied to an articulation link (i.e. with a PhysicsRigidBodyAPI). Units: (local-frame) distance.
Declaration
point3f localPos = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateLocalPosAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLocalPosAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetParentAttachmentAttr() const#
API instance name of parent attachment at parentLink.
Declaration
uniform token parentAttachment
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateParentAttachmentAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetParentAttachmentAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetParentLinkRel() const#
Relationship to parent link that has a PhysxTendonAttachmentAPI or PhysxTendonAttachmentRootAPI with instance name parentAttachment applied.
-
UsdRelationship CreateParentLinkRel() const#
See GetParentLinkRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Members
-
path physxTendon#
Return a PhysxSchemaPhysxTendonAttachmentAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxTendonAttachmentAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxTendonAttachmentAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxTendonAttachmentAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxTendonAttachmentAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxTendonAttachmentAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxTendonAttachmentAPI.
- static bool IsPhysxTendonAttachmentAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxTendonAttachmentAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTendonAttachmentAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxTendonAttachmentAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxTendonAttachmentAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTendonAttachmentAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTendonAttachmentAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTendonAttachmentLeafAPI : public UsdAPISchemaBase#
WARNING: Draft API, this design is not fixed and may change in the future.
Applied to an articulation-link rigid-body Xformable.
The leaf API creates a new sub-tendon between the leaf and the root attachment. A leaf cannot have any children, i.e. there cannot be another attachment API that refers to a leaf as parent.
Public Functions
- inline explicit PhysxSchemaPhysxTendonAttachmentLeafAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxTendonAttachmentLeafAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxTendonAttachmentLeafAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxTendon:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxTendonAttachmentLeafAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxTendonAttachmentLeafAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxTendonAttachmentLeafAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTendonAttachmentLeafAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetRestLengthAttr() const#
Sub-tendon rest length. If set to a negative value, the rest length is computed internally from the articulation pose and the attachment positions at simulation start. Range: [0, inf) Units: distance.
Declaration
float restLength = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRestLengthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestLengthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLowerLimitAttr() const#
Sub-tendon length lower limit. Range: (-inf, upperLimit] Units: distance.
Declaration
float lowerLimit = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLowerLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLowerLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpperLimitAttr() const#
Sub-tendon length upper limit. Range: [lowerLimit, inf) Units: distance.
Declaration
float upperLimit = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateUpperLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpperLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxTendon#
Return a PhysxSchemaPhysxTendonAttachmentLeafAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxTendonAttachmentLeafAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxTendonAttachmentLeafAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxTendonAttachmentLeafAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxTendonAttachmentLeafAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxTendonAttachmentLeafAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxTendonAttachmentLeafAPI.
- static bool IsPhysxTendonAttachmentLeafAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxTendonAttachmentLeafAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTendonAttachmentLeafAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxTendonAttachmentLeafAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxTendonAttachmentLeafAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTendonAttachmentLeafAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTendonAttachmentLeafAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTendonAttachmentRootAPI : public UsdAPISchemaBase#
WARNING: Draft API, this design is not fixed and may change in the future.
Applied to an articulation-link rigid-body Xformable.
The root API creates a new spatial tendon tree. The root tendon attachment is the only attachment in a tendon tree that does not have a parent, so the parentLink, parentAttachment, and gearing attributes inherited from PhysxTendonAttachmentAPI are ignored for a root.
Spatial tendons create line-of-sight distance constraints between links of a single articulation. In particular, spatial tendons run through attachments that are positioned relative to a rigid-body link, and their length is defined as a weighted sum of the distance between the attachments in the tendon.
Spatial tendons may branch, in which case the tendon splits up into multiple conceptual sub-tendons, one for each root-to-leaf path in the tendon tree. The tendon tree starts at the root, and its topology is defined by the attachments’ parentLink rel and parentAttachment token.
It is possible to create multiple attachments per link, see PhysxTendonAttachmentAPI.
Details on dynamics:
The length of a sub-tendon in the tree is
subTendonLength = sum(gearing[i] * |p[i] - p_parent[i]|)
where the sum is evaluated along the unique tree path between root and leaf. The gearing[i] is the i-th attachment’s gearing, and |p[i] - p_parent[i]| is the distance between the positions of the i-th attachment and its parent attachment.
Each subtendon has spring-damper dynamics acting on the length constraint
constraint = 0 = offset + subTendonLength - restLength
where the offset is a common summand for all sub-tendons of a spatial tendon, and the restLength is specific to a sub-tendon, see the PhysxTendonAttachmentLeafAPI.
If limits are not active, the sub-tendon force that acts on the leaf is
F = stiffness * constraint + damping * tendonVelocity
where tendonVelocity is the sum of the time derivatives of the line-of-sight distances between 1) the leaf and its parent attachment and 2) the tendon root and its first child attachment on the path to the leaf. Stiffness and damping are common parameters for all sub-tendons.
The 3D force applied at the leaf attachment is equal to
F * (p_parent - p_leaf).
where p_leaf and p_parent are the leaf’s position and its parent’s position, respectively. The reaction force acting on the root attachment is
F * (p_child_leaf - p_root)
where p_child_leaf is the position of the root’s child attachment that leads to the leaf that produces F, and p_root is the root attachment position. The tendon force is not further propagated through the tendon, so at intermediate attachments (i.e. created by PhysxTendonAttachmentAPI) no forces are applied.
Note that a spatial tendon may both pull and push on the leaf and root attachments. A string-like, one-sided constraint can be implemented using the sub-tendon’s length limits.
Sub-tendon length limits constrain the offset length
lowerLimit <= subTendonLength + offset<= upperLimit
and, when active, add a restoring spring force parametrized by limitStiffness to the tendon force, analogous to the length constraint force above. Limit dynamics are damped by the tendon-length damping that is applied regardless of a limit being active. Limit parameters are attributes of the PhysxTendonAttachmentLeafAPI.
Public Functions
- inline explicit PhysxSchemaPhysxTendonAttachmentRootAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxTendonAttachmentRootAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxTendonAttachmentRootAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxTendon:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxTendonAttachmentRootAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxTendonAttachmentRootAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxTendonAttachmentRootAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTendonAttachmentRootAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetTendonEnabledAttr() const#
Enables/disables the tendon from contributing to the articulation dynamics.
Declaration
bool tendonEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateTendonEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTendonEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStiffnessAttr() const#
Common sub-tendon length spring stiffness. Range: [0, inf) Units: force / distance = mass / time / time.
Declaration
float stiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingAttr() const#
Common sub-tendon length damping. Range: [0, inf) Units: force / distance * time = mass / time.
Declaration
float damping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLimitStiffnessAttr() const#
Common sub-tendon length-limit spring stiffness. Range: [0, inf) Units: force / distance = mass / time / time.
Declaration
float limitStiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLimitStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLimitStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetOffsetAttr() const#
Common sub-tendon length offset. Range: (-inf, inf) Units: distance.
Declaration
float offset = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxTendon#
Return a PhysxSchemaPhysxTendonAttachmentRootAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxTendonAttachmentRootAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxTendonAttachmentRootAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxTendonAttachmentRootAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxTendonAttachmentRootAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxTendonAttachmentRootAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxTendonAttachmentRootAPI.
- static bool IsPhysxTendonAttachmentRootAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxTendonAttachmentRootAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTendonAttachmentRootAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxTendonAttachmentRootAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxTendonAttachmentRootAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTendonAttachmentRootAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTendonAttachmentRootAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTendonAxisAPI : public UsdAPISchemaBase#
WARNING: Draft API, this design is not fixed and may change in the future. At this point, we don’t support multi-axis joints (e.g. spherical, D6).
Applied to a Physics Joint that must be part of an articulation, e.g. PhysicsRevoluteJoint or PhysicsPrismaticJoint.
A tendon axis is part of a fixed tendon and contributes to the tendon length via the position of its associated articulation joint axis and the gearing attribute. The tendon applies spring-damper forces to the articulation links, scaled by the force coefficient, that aim to maintain constraints on the tendon lengths.
A joint may have multiple tendon axes that belong to distinct fixed tendons; therefore, the fixed-tendon APIs are multi-apply and are grouped into tendons by their instance names.
Fixed tendons do not allow linking arbitrary joint axes of the articulation: The respective joints must all be directly connected to each other in the articulation structure, i.e. each of the joints in the tendon must be connected by a single articulation link to another joint in the same tendon. This implies that fixed tendons can branch along with a branching articulation as well. In addition, the root tendon axis created by applying the PhysxTendonAxisRootAPI must be applied to the articulation joint that is the common ancestor of all joint axes in the fixed tendon.
In a future version, it will be possible to include multiple axes of a multi-axis joint (e.g. a spherical joint) in the fixed tendon by adding them to the axis token array, and setting their gearing and forceCoefficient accordingly in the respective float arrays (in the same order). Until then, the jointAxis token array is ignored, and only the first element of the gearing array is considered.
Public Functions
- inline explicit PhysxSchemaPhysxTendonAxisAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxTendonAxisAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxTendonAxisAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxTendon:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxTendonAxisAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxTendonAxisAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxTendonAxisAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTendonAxisAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetGearingAttr() const#
Joint gearing(s) per joint axis in axis token array, in the same order. Range: (-inf, inf) Units: translational axis: unitless rotational axis: distance/degrees.
Declaration
float[] gearing = [1]
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateGearingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetGearingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetForceCoefficientAttr() const#
Joint force coefficient(s) per joint axis in axis token array, in the same order. Range: (-inf, inf) Units: translational axis: unitless rotational axis: distance.
Declaration
float[] forceCoefficient = [1]
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateForceCoefficientAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetForceCoefficientAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetJointAxisAttr() const#
Specifies target joint axis/axes. Ignored when the joint only has a single axis, e.g. a revolute joint.
Declaration
uniform token[] jointAxis
C++ Type
VtArray<TfToken>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->TokenArray
SdfVariability “Variability”
SdfVariabilityUniform
transX, transY, transZ, rotX, rotY, rotZ
- UsdAttribute CreateJointAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetJointAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxTendon#
Return a PhysxSchemaPhysxTendonAxisAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxTendonAxisAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxTendonAxisAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxTendonAxisAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxTendonAxisAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxTendonAxisAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxTendonAxisAPI.
- static bool IsPhysxTendonAxisAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxTendonAxisAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTendonAxisAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxTendonAxisAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxTendonAxisAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTendonAxisAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTendonAxisAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTendonAxisRootAPI : public UsdAPISchemaBase#
WARNING: Draft API, this design is not fixed and may change in the future. At this point, we don’t support multi-axis joints (e.g. spherical, D6) yet.
Applied to a Physics Joint that must be part of an articulation, e.g. PhysicsRevoluteJoint or PhysicsPrismaticJoint.
In addition to creating a regular axis of the fixed tendon, the root API provides attributes that apply to the entire tendon. The root API must be applied to the joint that is the common ancestor of all joint axes in the tendon.
For restrictions on tendon structure and grouping of axes into tendons, see PhysxTendonAxisAPI.
Public Functions
- inline explicit PhysxSchemaPhysxTendonAxisRootAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxTendonAxisRootAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxTendonAxisRootAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxTendon:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxTendonAxisRootAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxTendonAxisRootAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxTendonAxisRootAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTendonAxisRootAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetStiffnessAttr() const#
Tendon length spring stiffness. Range: [0, inf) Units: force / distance = mass / time / time.
Declaration
float stiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingAttr() const#
Tendon length damping. Range: [0, inf) Units: force / distance * time = mass / time.
Declaration
float damping = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLimitStiffnessAttr() const#
Tendon length-limit spring stiffness. Range: [0, inf) Units: force / distance = mass / time / time.
Declaration
float limitStiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLimitStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLimitStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetOffsetAttr() const#
Tendon length offset. Range: (-inf, inf) Units: distance.
Declaration
float offset = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestLengthAttr() const#
Tendon rest length. Range: (-inf, inf) Units: distance.
Declaration
float restLength = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRestLengthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestLengthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLowerLimitAttr() const#
Tendon length lower limit. Range: (-inf, upperLimit]. Units: distance.
Declaration
float lowerLimit = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLowerLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLowerLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpperLimitAttr() const#
Tendon length upper limit. Range: [lowerLimit, inf) Units: distance.
Declaration
float upperLimit = inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateUpperLimitAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpperLimitAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTendonEnabledAttr() const#
Enables/disables the tendon from contributing to the articulation dynamics.
Declaration
bool tendonEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateTendonEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTendonEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxTendon#
Return a PhysxSchemaPhysxTendonAxisRootAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxTendonAxisRootAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxTendonAxisRootAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxTendonAxisRootAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxTendonAxisRootAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxTendonAxisRootAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxTendonAxisRootAPI.
- static bool IsPhysxTendonAxisRootAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxTendonAxisRootAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTendonAxisRootAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxTendonAxisRootAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxTendonAxisRootAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTendonAxisRootAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTendonAxisRootAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTriangleMeshCollisionAPI : public UsdAPISchemaBase#
PhysX triangle mesh extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxTriangleMeshCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxTriangleMeshCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxTriangleMeshCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxTriangleMeshCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxTriangleMeshCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxTriangleMeshCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTriangleMeshCollisionAPI()#
Destructor.
-
UsdAttribute GetWeldToleranceAttr() const#
Mesh weld tolerance, controls the distance at which vertices are welded. Default -inf will autocompute the welding tolerance based on the mesh size. Zero value will disable welding. Range: [0, inf) Units: distance.
Declaration
float physxTriangleMeshCollision:weldTolerance = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateWeldToleranceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWeldToleranceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxTriangleMeshCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxTriangleMeshCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxTriangleMeshCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTriangleMeshCollisionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxTriangleMeshCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTriangleMeshCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTriangleMeshCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI : public UsdAPISchemaBase#
PhysX triangle mesh simplification extended parameters.
Public Functions
- inline explicit PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI()#
Destructor.
-
UsdAttribute GetSimplificationMetricAttr() const#
Mesh simplification accuracy.
Declaration
float physxTriangleMeshSimplificationCollision:metric = 0.55
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSimplificationMetricAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSimplificationMetricAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWeldToleranceAttr() const#
Mesh weld tolerance, controls the distance at which vertices are welded. Default -inf will autocompute the welding tolerance based on the mesh size. Zero value will disable welding. Range: [0, inf) Units: distance.
Declaration
float physxTriangleMeshSimplificationCollision:weldTolerance = -inf
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateWeldToleranceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWeldToleranceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxTriangleMeshSimplificationCollisionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTriggerAPI : public UsdAPISchemaBase#
PhysX trigger.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxTriggerAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxTriggerAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxTriggerAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxTriggerAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxTriggerAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxTriggerAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTriggerAPI()#
Destructor.
-
UsdAttribute GetEnterScriptTypeAttr() const#
Enter script type. Script file tries to find a file on disc and execute.
Declaration
uniform token physxTrigger:enterScriptType = "scriptFile"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
scriptFile
- UsdAttribute CreateEnterScriptTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetEnterScriptTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLeaveScriptTypeAttr() const#
Leave script type. Script file tries to find a file on disc and execute.
Declaration
uniform token physxTrigger:leaveScriptType = "scriptFile"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
scriptFile
- UsdAttribute CreateLeaveScriptTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLeaveScriptTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetOnEnterScriptAttr() const#
Enter script.
Declaration
uniform token physxTrigger:onEnterScript
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateOnEnterScriptAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetOnEnterScriptAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetOnLeaveScriptAttr() const#
Leave script.
Declaration
uniform token physxTrigger:onLeaveScript
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
- UsdAttribute CreateOnLeaveScriptAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetOnLeaveScriptAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxTriggerAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxTriggerAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxTriggerAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxTriggerAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxTriggerAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTriggerAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTriggerAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxTriggerStateAPI : public UsdAPISchemaBase#
PhysX trigger state.
Public Functions
- inline explicit PhysxSchemaPhysxTriggerStateAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxTriggerStateAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxTriggerStateAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxTriggerStateAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxTriggerStateAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxTriggerStateAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxTriggerStateAPI()#
Destructor.
-
UsdRelationship GetTriggeredCollisionsRel() const#
List of collisions that are currently triggered.
-
UsdRelationship CreateTriggeredCollisionsRel() const#
See GetTriggeredCollisionsRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxTriggerStateAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxTriggerStateAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxTriggerStateAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxTriggerStateAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxTriggerStateAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxTriggerStateAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxTriggerStateAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleAckermannSteeringAPI : public UsdAPISchemaBase#
Describes a steering system with Ackermann correction for two wheels. This system will result in asymmetric steer angles such that the line defined by the non-steered wheel axle and the lateral lines of the steered wheels meet at the same point. As a consequence, when following the path around a curve, the inner wheel will turn more than the outer one. This avoids that some wheels need to slip sideways to stay on the path. The specified wheels will be connected to the steer control (see PhysxVehicleControllerAPI). This API schema has to be applied to a prim with PhysxVehicleAPI applied. Can only be used for vehicles that have a drive (see PhysxVehicleDriveBasicAPI or PhysxVehicleDriveStandardAPI). This API schema can not be combined with PhysxVehicleSteeringAPI, only one or the other is allowed.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleAckermannSteeringAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleAckermannSteeringAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleAckermannSteeringAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleAckermannSteeringAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleAckermannSteeringAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleAckermannSteeringAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleAckermannSteeringAPI()#
Destructor.
-
UsdAttribute GetWheel0Attr() const#
The index of the wheel that is negative along the lateral axis and should get connected to the steering system. The index refers to the attribute “index” of PhysxVehicleWheelAttachmentAPI.
Note: this attribute has to be specified (there is no default).
Declaration
int physxVehicleAckermannSteering:wheel0
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateWheel0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheel0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheel1Attr() const#
The index of the wheel that is positive along the lateral axis and should get connected to the steering system. The index refers to the attribute “index” of PhysxVehicleWheelAttachmentAPI.
Note: this attribute has to be specified (there is no default).
Declaration
int physxVehicleAckermannSteering:wheel1
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateWheel1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheel1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSteerAngleAttr() const#
The maximum steer angle (in radians) that can be achieved by the wheels. Has to be in range [-pi, pi]. The steer angle of wheel0 will be defined by maxSteerAngle * ackermann_correction(0) * physxVehicleController:steer (see PhysxVehicleControllerAPI).
Declaration
float physxVehicleAckermannSteering:maxSteerAngle = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxSteerAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSteerAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheelBaseAttr() const#
The longitudinal distance between the axle that is affected by Ackermann correction and a reference axle (units: distance). The value has to be greater than zero.
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleAckermannSteering:wheelBase
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateWheelBaseAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelBaseAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTrackWidthAttr() const#
The width of the axle defined by wheel0 and wheel1 (units: distance). The value has to be greater than zero.
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleAckermannSteering:trackWidth
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateTrackWidthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTrackWidthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetStrengthAttr() const#
The strength of the Ackermann correction with 0 denoting no correction and 1 denoting perfect correction. The value has to be in range [0, 1].
Declaration
float physxVehicleAckermannSteering:strength = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStrengthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStrengthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleAckermannSteeringAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleAckermannSteeringAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleAckermannSteeringAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleAckermannSteeringAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleAckermannSteeringAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleAckermannSteeringAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleAckermannSteeringAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleAPI : public UsdAPISchemaBase#
PhysX vehicle. Has to be applied to a prim with PhysicsRigidBodyAPI applied. Wheels can be added by applying PhysxVehicleWheelAttachmentAPI to a prim that is a descendant of the “vehicle” prim.
Note: if the prim has PhysxRigidBodyAPI applied, it should be configured such that disableGravity is set to true since the vehicle simulation will take gravity into account already.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleAPI()#
Destructor.
-
UsdAttribute GetVehicleEnabledAttr() const#
Defines whether the vehicle simulation update loop will run for the vehicle or not.
Note: if set to false, the prim’s rigid body will still get simulated (the PhysicsRigidBodyAPI API schema can be used to turn the body into a kinematic or set velocities to zero at that point).
Note: it is an illegal setup to have a vehicle enabled, while the prim’s rigid body is disabled or kinematic.
Declaration
bool physxVehicle:vehicleEnabled = 1
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateVehicleEnabledAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVehicleEnabledAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSuspensionLineQueryTypeAttr() const#
Collision of the wheels with the ground surface is detected through scene queries along the suspension direction. This attribute defines whether a raycast or a sweep should be used as the query type. Raycasts are faster while sweeps can represent the wheel shape better and thus react earlier to ground surface changes.
Declaration
uniform token physxVehicle:suspensionLineQueryType = "raycast"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
raycast, sweep
- UsdAttribute CreateSuspensionLineQueryTypeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSuspensionLineQueryTypeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLimitSuspensionExpansionVelocityAttr() const#
Limit the suspension expansion dynamics.
When a hit with the ground is detected, the suspension jounce will be set such that the wheel is placed on the ground. This can result in large changes to jounce within a single simulation frame, if the ground surface has high frequency or if the simulation time step is large. As a result, large damping forces can evolve and cause undesired behavior. If this parameter is set to true, the suspension expansion speed will be limited to what can be achieved given the time step, suspension stiffness etc. As a consequence, handling of the vehicle will be affected as the wheel might loose contact with the ground more easily.
Note: this will apply to the suspensions of all wheels.
Declaration
bool physxVehicle:limitSuspensionExpansionVelocity = 0
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateLimitSuspensionExpansionVelocityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLimitSuspensionExpansionVelocityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSubStepThresholdLongitudinalSpeedAttr() const#
Threshold speed that is used to categorize vehicle speed as low speed or high speed for choosing the sub-step count (units: distance / seconds).
Note: if not defined, the value 5.0 will be used. This default value is in meter length scale and will get adjusted if another unit is used.
Declaration
float physxVehicle:subStepThresholdLongitudinalSpeed
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSubStepThresholdLongitudinalSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSubStepThresholdLongitudinalSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLowForwardSpeedSubStepCountAttr() const#
Number of sub-steps performed in the vehicle dynamics update for vehicles that have longitudinal speed lower than subStepThresholdLongitudinalSpeed.
Note: if not defined, the value 3 will be used.
Declaration
int physxVehicle:lowForwardSpeedSubStepCount
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateLowForwardSpeedSubStepCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLowForwardSpeedSubStepCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetHighForwardSpeedSubStepCountAttr() const#
Number of sub-steps performed in the vehicle dynamics update for vehicles that have longitudinal speed greater than subStepThresholdLongitudinalSpeed.
Note: if not defined, the value 1 will be used.
Declaration
int physxVehicle:highForwardSpeedSubStepCount
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateHighForwardSpeedSubStepCountAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetHighForwardSpeedSubStepCountAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinLongitudinalSlipDenominatorAttr() const#
Deprecated. Please use minPassiveLongitudinalSlipDenominator instead.
The minimum denominator used in the longitudinal slip calculation (units: distance / seconds). For low longitudinal velocities, the computation of the longitudinal slip can become unstable. This value defines the minimum velocity to use when computing the longitudinal slip.
Note: will be ignored if minPassiveLongitudinalSlipDenominator is used.
Note: if not defined, the value 4.0 will be used. This default value is in meter length scale and will get adjusted if another unit is used.
Declaration
float physxVehicle:minLongitudinalSlipDenominator
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinLongitudinalSlipDenominatorAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinLongitudinalSlipDenominatorAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinPassiveLongitudinalSlipDenominatorAttr() const#
The minimum denominator used in the longitudinal slip calculation when a wheel experiences no drive and no brake torque (units: distance / seconds). For low longitudinal velocities, the computation of the longitudinal slip can become unstable. This value defines the minimum velocity to use when computing the longitudinal slip. The value has to be positive.
Note: the default value 0 is not a valid value as such but indicates that the deprecated attribute minLongitudinalSlipDenominator should be used instead.
Note: it is recommended to have minActiveLongitudinalSlipDenominator < minPassiveLongitudinalSlipDenominator.
Declaration
float physxVehicle:minPassiveLongitudinalSlipDenominator = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinPassiveLongitudinalSlipDenominatorAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinPassiveLongitudinalSlipDenominatorAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinActiveLongitudinalSlipDenominatorAttr() const#
The minimum denominator used in the longitudinal slip calculation when a wheel experiences drive or brake torque (units: distance / seconds). For low longitudinal velocities, the computation of the longitudinal slip can become unstable. This value defines the minimum velocity to use when computing the longitudinal slip. The value has to be positive.
Note: the default value 0 is not a valid value as such but will result in the value 0.1 being used (in meter length scale or the equivalent if another unit is used).
Note: it is recommended to have minActiveLongitudinalSlipDenominator < minPassiveLongitudinalSlipDenominator.
Declaration
float physxVehicle:minActiveLongitudinalSlipDenominator = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinActiveLongitudinalSlipDenominatorAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinActiveLongitudinalSlipDenominatorAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMinLateralSlipDenominatorAttr() const#
The minimum denominator used in the lateral slip calculation (units: distance / seconds). For low longitudinal velocities, the computation of the lateral slip can become unstable. This value defines the minimum longitudinal velocity to use when computing the lateral slip. The value has to be positive.
Note: the default value 0 is not a valid value as such but will result in the value 1.0 being used (in meter length scale or the equivalent if another unit is used).
Note: larger simulation timesteps typically require larger values of minLateralSlipDenominator.
Declaration
float physxVehicle:minLateralSlipDenominator = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMinLateralSlipDenominatorAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMinLateralSlipDenominatorAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLongitudinalStickyTireThresholdSpeedAttr() const#
The longitudinal sticky tire threshold speed (units: distance / seconds). Has to be greater or equal 0. A tire enters the “sticky tire” regime when its longitudinal speed has been below this threshold for a continuous time specified by longitudinalStickyTireThresholdTime. At low speeds with no significant brake or drive torque, numerical error begins to dominate and it can be difficult to bring the vehicle to rest. A solution to this problem is to recognise that the vehicle is close to rest and to replace the tire forces with velocity constraints that will bring the vehicle to rest. For the purpose of this documentation, this regime is referred to as the “sticky tire” regime.
Note: the default value -1 is not a valid value as such but will result in the value 0.2 being used (in meter length scale or the equivalent if another unit is used).
Declaration
float physxVehicle:longitudinalStickyTireThresholdSpeed = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLongitudinalStickyTireThresholdSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLongitudinalStickyTireThresholdSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLongitudinalStickyTireThresholdTimeAttr() const#
The longitudinal sticky tire threshold time (in seconds). Has to be greater or equal 0. A tire enters the “sticky tire” regime when it has been below the speed specified by longitudinalStickyTireThresholdSpeed for this continuous time. More details on the “sticky tire” regime can be found in the documentation of the longitudinalStickyTireThresholdSpeed attribute.
Declaration
float physxVehicle:longitudinalStickyTireThresholdTime = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLongitudinalStickyTireThresholdTimeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLongitudinalStickyTireThresholdTimeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLongitudinalStickyTireDampingAttr() const#
The longitudinal sticky tire damping (per seconds). Has to be greater or equal 0. Describes the rate at which the velocity constraint approaches zero when entering the “sticky tire” regime. More details on the “sticky tire” regime can be found in the documentation of the longitudinalStickyTireThresholdSpeed attribute.
Note: larger values of damping lead to faster approaches to zero. Since the damping behaves like a stiffness with respect to the velocity, too large a value can lead to instabilities.
Declaration
float physxVehicle:longitudinalStickyTireDamping = 200
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLongitudinalStickyTireDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLongitudinalStickyTireDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLateralStickyTireThresholdSpeedAttr() const#
The lateral sticky tire threshold speed (units: distance / seconds). See documentation about longitudinalStickyTireThresholdSpeed as it is the same concept. Note that the lateral part can only enter the “sticky tire” regime if the longitudinal speed is below longitudinalStickyTireThresholdSpeed.
Note: the default value -1 is not a valid value as such but will result in the value 0.2 being used (in meter length scale or the equivalent if another unit is used).
Declaration
float physxVehicle:lateralStickyTireThresholdSpeed = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLateralStickyTireThresholdSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLateralStickyTireThresholdSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLateralStickyTireThresholdTimeAttr() const#
The lateral sticky tire threshold time (in seconds). See documentation about longitudinalStickyTireThresholdTime as it is the same concept.
Declaration
float physxVehicle:lateralStickyTireThresholdTime = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLateralStickyTireThresholdTimeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLateralStickyTireThresholdTimeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLateralStickyTireDampingAttr() const#
The lateral sticky tire damping (per seconds). See documentation about longitudinalStickyTireDamping as it is the same concept.
Note: larger values of damping lead to faster approaches to zero. Since the damping behaves like a stiffness with respect to the velocity, too large a value can lead to instabilities.
Declaration
float physxVehicle:lateralStickyTireDamping = 20
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLateralStickyTireDampingAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLateralStickyTireDampingAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetDriveRel() const#
A relationship to a PhysxVehicleDriveBasicAPI or PhysxVehicleDriveStandardAPI prim that describes the drive model. If none is specified, it is up to the user to apply torque to the wheels. It is also possible to apply PhysxVehicleDriveBasicAPI or PhysxVehicleDriveStandardAPI to the prim directly. In that case the relationship must not be defined.
-
UsdRelationship CreateDriveRel() const#
See GetDriveRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleAutoGearBoxAPI : public UsdAPISchemaBase#
Properties of the PhysX vehicle automatic gear shift box. If the automatic gear shift box setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleDriveStandardAPI applied. If the intent is to share the automatic gear shift box setup, PhysxVehicleAutoGearBoxAPI can be applied to a separate prim which can be linked to (see PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleAutoGearBoxAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleAutoGearBoxAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleAutoGearBoxAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleAutoGearBoxAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleAutoGearBoxAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleAutoGearBoxAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleAutoGearBoxAPI()#
Destructor.
-
UsdAttribute GetUpRatiosAttr() const#
Value of normalized engine speed (engineRotationSpeed / maxRotationSpeed) that is high enough to increment gear. The first entry is for first gear and then up to the second highest gear. When (engineRotationSpeed / maxRotationSpeed) > upRatios[currentGear] the autobox will begin a transition to currentGear+1 unless currentGear is the highest possible gear or neutral or reverse.
Note: if not defined, the following values will be used: [0.65, 0.65, 0.65, 0.65].
Declaration
float[] physxVehicleAutoGearBox:upRatios
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateUpRatiosAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpRatiosAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDownRatiosAttr() const#
Value of normalized engine speed (engineRotationSpeed / maxRotationSpeed) that is low enough to decrement gear. The first entry is for second gear then up to the highest gear. When (engineRotationSpeed / maxRotationSpeed) < downRatios[currentGear] the autobox will begin a transition to currentGear-1 unless currentGear is first gear or neutral or reverse.
Note: if not defined, the following values will be used: [0.5, 0.5, 0.5, 0.5].
Declaration
float[] physxVehicleAutoGearBox:downRatios
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateDownRatiosAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDownRatiosAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLatencyAttr() const#
The latency time of the automatic gear shift box (units: seconds). This is the minimum time that must pass between each gear change that is initiated by the automatic gear shift box.
Note: if not defined, the value 2.0 will be used.
Declaration
float physxVehicleAutoGearBox:latency
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLatencyAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLatencyAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleAutoGearBoxAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleAutoGearBoxAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleAutoGearBoxAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleAutoGearBoxAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleAutoGearBoxAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleAutoGearBoxAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleAutoGearBoxAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleBrakesAPI : public UsdAPISchemaBase#
Describes a braking system for a vehicle by specifying which wheels are connected to the brake control and by defining the brake torque that gets applied to those wheels. Currently, up to two braking systems are supported. Use the instance name TfToken “brakes0” and “brakes1” of this multipleApply schema to distinguish between the two braking systems. Note that system “brakes0” will be coupled to the brake control brake0 while system “brakes1” will be coupled to the brake control brake1 (see PhysxVehicleControllerAPI for the brake controls). An example for using two systems is to provide brake and handbrake control (the former applying brake torque to all wheels and the latter applying brake torque to the rear wheels only). This API schema has to be applied to a prim with PhysxVehicleAPI applied. Can only be used for vehicles that have a drive (see PhysxVehicleDriveBasicAPI or PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleBrakesAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxVehicleBrakesAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxVehicleBrakesAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxVehicleBrakes:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxVehicleBrakesAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxVehicleBrakesAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxVehicleBrakesAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleBrakesAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetWheelsAttr() const#
List of indices, referencing the wheels that receive brake torque. The indices refer to the attribute “index” of PhysxVehicleWheelAttachmentAPI. If not specified, each wheel will receive a brake torque using a torque multiplier of 1 (see attribute torqueMultipliers).
Declaration
int[] wheels
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateWheelsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxBrakeTorqueAttr() const#
The maximum brake torque that can be generated by the braking system (units: mass * distance * distance / seconds / seconds). Has to be greater or equal zero. For braking system “brakes0”, the brake torque applied to wheels[i] will be defined by maxBrakeTorque * torqueMultipliers[i] * physxVehicleController:brake0 (see PhysxVehicleControllerAPI).
Declaration
float maxBrakeTorque = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxBrakeTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxBrakeTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTorqueMultipliersAttr() const#
Defines how much of the max brake torque can be delivered to the wheels that are connected to the braking system. The values are unitless multipliers and have to be greater or equal to zero. See maxBrakeTorque for how these multipliers affect the brake torque applied to a wheel. If the attribute is defined, then the length of the array needs to match the length of the “wheels” array. If the attribute is not defined, a multiplier value of 1 will be used for all connected wheels.
Declaration
float[] torqueMultipliers
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateTorqueMultipliersAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTorqueMultipliersAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxVehicleBrakes#
Return a PhysxSchemaPhysxVehicleBrakesAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxVehicleBrakesAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxVehicleBrakesAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxVehicleBrakesAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxVehicleBrakesAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxVehicleBrakesAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxVehicleBrakesAPI.
- static bool IsPhysxVehicleBrakesAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxVehicleBrakesAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleBrakesAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxVehicleBrakesAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxVehicleBrakesAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleBrakesAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleBrakesAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleClutchAPI : public UsdAPISchemaBase#
Properties of the PhysX vehicle clutch. If the clutch setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleDriveStandardAPI applied. If the intent is to share the clutch setup, PhysxVehicleClutchAPI can be applied to a separate prim which can be linked to (see PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleClutchAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleClutchAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleClutchAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleClutchAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleClutchAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleClutchAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleClutchAPI()#
Destructor.
-
UsdAttribute GetStrengthAttr() const#
Strength of clutch (units: torque * seconds = mass * distance * distance / seconds). The value has to be positive. The clutch is the mechanism that couples the engine to the wheels. A stronger clutch more strongly couples the engine to the wheels, while a clutch of strength zero completely decouples the engine from the wheels. Stronger clutches more quickly bring the wheels and engine into equilibrium, while weaker clutches take longer, resulting in periods of clutch slip and delays in power transmission from the engine to the wheels. The torque generated by the clutch is proportional to the clutch strength and the velocity difference between the engine’s rotational speed and the rotational speed of the driven wheels after accounting for the gear ratio. The torque at the clutch is applied negatively to the engine and positively to the driven wheels.
Note: if not defined, the value 10.0 will be used. This default value is in meter length scale and kilograms and will get adjusted if other units are used.
Declaration
float physxVehicleClutch:strength
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateStrengthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetStrengthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleClutchAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleClutchAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleClutchAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleClutchAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleClutchAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleClutchAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleClutchAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleContextAPI : public UsdAPISchemaBase#
PhysX vehicles general settings. Has to be applied to a PhysicsScene prim.
For any described attribute Fallback Value or Allowed Values below that are text/tokens, the actual token is published and defined in PhysxSchemaTokens. So to set an attribute to the value “rightHanded”, use PhysxSchemaTokens->rightHanded as the value.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleContextAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleContextAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleContextAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleContextAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleContextAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleContextAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleContextAPI()#
Destructor.
-
UsdAttribute GetUpdateModeAttr() const#
The dynamics of the vehicle simulation can get applied to the PhysX rigid body by either applying an acceleration or by using a velocity delta.
Declaration
uniform token physxVehicleContext:updateMode = "velocityChange"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
velocityChange, acceleration
- UsdAttribute CreateUpdateModeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpdateModeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetUpAxisAttr() const#
Deprecated. Please use verticalAxis instead.
The normalized vector defining the general up direction to use for vehicles. Has to match one of the base axes (1,0,0), (0,1,0) etc. Arbitrary axes are not supported.
Note: will be ignored if verticalAxis is used.
Declaration
float3 physxVehicleContext:upAxis
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateUpAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetUpAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetForwardAxisAttr() const#
Deprecated. Please use longitudinalAxis instead.
The normalized vector defining the general forward direction to use for vehicles. Has to match one of the base axes (1,0,0), (0,1,0) etc. Arbitrary axes are not supported.
Note: will be ignored if longitudinalAxis is used.
Declaration
float3 physxVehicleContext:forwardAxis
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateForwardAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetForwardAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetVerticalAxisAttr() const#
The axis defining the general up direction to use for vehicles.
Note: the “undefined” token value is only a valid option for indicating that the deprecated attribute upAxis should be used instead. Else, a valid axis has to be chosen.
Declaration
uniform token physxVehicleContext:verticalAxis = "undefined"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
posX, negX, posY, negY, posZ, negZ, undefined
- UsdAttribute CreateVerticalAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetVerticalAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLongitudinalAxisAttr() const#
The axis defining the general forward direction to use for vehicles.
Note: the “undefined” token value is only a valid option for indicating that the deprecated attribute forwardAxis should be used instead. Else, a valid axis has to be chosen.
Declaration
uniform token physxVehicleContext:longitudinalAxis = "undefined"
C++ Type
TfToken
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Token
SdfVariability “Variability”
SdfVariabilityUniform
posX, negX, posY, negY, posZ, negZ, undefined
- UsdAttribute CreateLongitudinalAxisAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLongitudinalAxisAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleContextAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleContextAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleContextAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleContextAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleContextAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleContextAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleContextAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleControllerAPI : public UsdAPISchemaBase#
PhysX vehicle controller that samples user input to drive the vehicle. Has to be applied to a prim with PhysxVehicleAPI applied.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleControllerAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleControllerAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleControllerAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleControllerAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleControllerAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleControllerAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleControllerAPI()#
Destructor.
-
UsdAttribute GetAcceleratorAttr() const#
Driven vehicle. Throttle input, 0.0 to 1.0.
Declaration
float physxVehicleController:accelerator = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateAcceleratorAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAcceleratorAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBrake0Attr() const#
Brake control for braking system “brakes0” (see PhysxVehicleBrakesAPI) that triggers the connected brakes and defines the brake strength. Value has to be in range [0.0, 1.0].
Declaration
float physxVehicleController:brake0 = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBrake0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBrake0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBrake1Attr() const#
Brake control for braking system “brakes1” (see PhysxVehicleBrakesAPI) that triggers the connected brakes and defines the brake strength. Value has to be in range [0.0, 1.0].
Declaration
float physxVehicleController:brake1 = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBrake1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBrake1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBrakeAttr() const#
Deprecated. Please use brake0/brake1 instead.
Driven vehicle. Brake input, 0.0 to 1.0.
Declaration
float physxVehicleController:brake = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBrakeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBrakeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetHandbrakeAttr() const#
Deprecated. Please use brake0/brake1 instead.
Driven vehicle. Handbrake input, 0.0 to 1.0.
Declaration
float physxVehicleController:handbrake = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateHandbrakeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetHandbrakeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSteerAttr() const#
Steer control for the steering system (see PhysxVehicleSteeringAPI). Defines the extent of the wheels’ steer angles with respect to the maximum steer angle. Value has to be in range [-1.0, 1.0].
Declaration
float physxVehicleController:steer = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSteerAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSteerAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSteerLeftAttr() const#
Deprecated. Please use steer instead.
Driven vehicle. Left steering input. 0.0 to 1.0. Net steering is the aggregate of steerRight and steerLeft.
Declaration
float physxVehicleController:steerLeft = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSteerLeftAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSteerLeftAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSteerRightAttr() const#
Deprecated. Please use steer instead.
Driven vehicle. Right steering input, 0.0 to 1.0. Net steering is the aggregate of steerRight and steerLeft.
Declaration
float physxVehicleController:steerRight = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSteerRightAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSteerRightAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTargetGearAttr() const#
Driven vehicle. Desired gear to shift into. -1 = Reverse, 0 = Neutral, 1 = First etc. The special value 255 is used to denote automatic forward gear shifting (similar to ‘D’ in automatic transmissions).
Note: if set to automatic gear shifting, the vehicle is expected to have an autobox defined (see PhysxVehicleAutoGearBoxAPI).
Note: please be aware that the target gear definition differs from the PhysX vehicle API.
Declaration
int physxVehicleController:targetGear = 255
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateTargetGearAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTargetGearAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleControllerAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleControllerAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleControllerAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleControllerAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleControllerAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleControllerAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleControllerAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleDriveBasicAPI : public UsdAPISchemaBase#
Very simple drive model for a PhysX vehicle. A torque will be directly applied to the wheels that are marked as driven (see PhysxVehicleMultiWheelDifferentialAPI or deprecated attribute “driven” in PhysxVehicleWheelAttachmentAPI).
If the drive setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleAPI applied. If the intent is to share the drive setup, PhysxVehicleDriveBasicAPI can be applied to a separate prim which can be linked to (see PhysxVehicleAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleDriveBasicAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleDriveBasicAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleDriveBasicAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleDriveBasicAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleDriveBasicAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleDriveBasicAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleDriveBasicAPI()#
Destructor.
-
UsdAttribute GetPeakTorqueAttr() const#
Maximum torque to generate when the accelerator pedal is at maximum (units: mass * distance * distance / seconds / seconds). The value has to be greater or equal 0.
Note: PhysxVehicleMultiWheelDifferentialAPI can be used to specify which wheels are connected to the drive as well as how the torque should be distributed among those wheels. If the deprecated attribute “driven” of PhysxVehicleWheelAttachmentAPI is used, then each driven wheel can experience a torque up to the value defined in this attribute.
Note: the applied torque is the value of the accelerator pedal (in range [0, 1]) multiplied by peakTorque.
Note: the default value -1 is not a valid value as such but will result in the value 1000.0 being used (in meter length scale and kilogram mass scale or the equivalent if other units are used).
Declaration
float physxVehicleDriveBasic:peakTorque = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePeakTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPeakTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleDriveBasicAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleDriveBasicAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleDriveBasicAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleDriveBasicAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleDriveBasicAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleDriveBasicAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleDriveBasicAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleDriveStandardAPI : public UsdAPISchemaBase#
Standard drive model for a PhysX vehicle. The available drive torque will be split equally between all the wheels that are marked as driven (see PhysxVehicleMultiWheelDifferentialAPI or deprecated attribute “driven” in PhysxVehicleWheelAttachmentAPI) unless the torque distributon is configured explicitly (see PhysxVehicleMultiWheelDifferentialAPI for details).
If the drive setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleAPI applied. If the intent is to share the drive setup, PhysxVehicleDriveStandardAPI can be applied to a separate prim which can be linked to (see PhysxVehicleAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleDriveStandardAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleDriveStandardAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleDriveStandardAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleDriveStandardAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleDriveStandardAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleDriveStandardAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleDriveStandardAPI()#
Destructor.
-
UsdRelationship GetEngineRel() const#
A relationship to a PhysxVehicleEngineAPI prim that describes the engine.
Note: either this relationship has to be specified or the prim must have PhysxVehicleEngineAPI applied (none or both of the two is invalid).
-
UsdRelationship CreateEngineRel() const#
See GetEngineRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetGearsRel() const#
A relationship to a PhysxVehicleGearsAPI prim that describes the gears.
Note: either this relationship has to be specified or the prim must have PhysxVehicleGearsAPI applied (none or both of the two is invalid).
-
UsdRelationship CreateGearsRel() const#
See GetGearsRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetAutoGearBoxRel() const#
A relationship to a PhysxVehicleAutoGearBoxAPI prim that describes the automatic gear shift box. This relationship is optional and should be omitted if no automatic gear shift is desired. It is also possible to apply PhysxVehicleAutoGearBoxAPI to the prim directly. In that case the relationship must not be defined.
-
UsdRelationship CreateAutoGearBoxRel() const#
See GetAutoGearBoxRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetClutchRel() const#
A relationship to a PhysxVehicleClutchAPI prim that describes the clutch.
Note: either this relationship has to be specified or the prim must have PhysxVehicleClutchAPI applied (none or both of the two is invalid).
-
UsdRelationship CreateClutchRel() const#
See GetClutchRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleDriveStandardAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleDriveStandardAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleDriveStandardAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleDriveStandardAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleDriveStandardAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleDriveStandardAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleDriveStandardAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleEngineAPI : public UsdAPISchemaBase#
Properties of a PhysX vehicle engine. If the engine setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleDriveStandardAPI applied. If the intent is to share the engine setup, PhysxVehicleEngineAPI can be applied to a separate prim which can be linked to (see PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleEngineAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleEngineAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleEngineAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleEngineAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleEngineAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleEngineAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleEngineAPI()#
Destructor.
-
UsdAttribute GetMoiAttr() const#
The moment of inertia of the engine around the axis of rotation (units: mass * distance * distance). The value has to be positive.
Note: if not defined, the value 1.0 will be used. This default value is in meter length scale and kilograms and will get adjusted if other units are used.
Declaration
float physxVehicleEngine:moi
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMoiAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMoiAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetPeakTorqueAttr() const#
Maximum torque available to apply to the engine when the accelerator pedal is at maximum (units: mass * distance * distance / seconds / seconds). The value has to be greater or equal 0.
Note: the torque available is the value of the accelerator pedal (in range [0, 1]) multiplied by the normalized torque as computed from torqueCurve (see corresponding attribute) multiplied by peakTorque.
Note: the default value -1 is not a valid value as such but will result in the value 500.0 being used (in meter length scale and kilogram mass scale or the equivalent if other units are used).
Declaration
float physxVehicleEngine:peakTorque = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreatePeakTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetPeakTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxRotationSpeedAttr() const#
Maximum rotation speed of the engine (units: radians / seconds). The value has to be greater or equal 0.
Declaration
float physxVehicleEngine:maxRotationSpeed = 600
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxRotationSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxRotationSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetIdleRotationSpeedAttr() const#
Rotation speed of the engine when idling (units: radians / seconds). The value has to be greater or equal 0.
Declaration
float physxVehicleEngine:idleRotationSpeed = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateIdleRotationSpeedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetIdleRotationSpeedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTorqueCurveAttr() const#
Graph of normalized torque (torque / peakTorque) against normalized engine speed (engineRotationSpeed / maxRotationSpeed).
Note: the normalized engine speed is the x-axis of the graph, while the normalized torque is the y-axis of the graph. No more than 8 data points are supported.
Note: if not defined, the following values will be used: [(0.0, 0.8), (0.33, 1.0), (1.0, 0.8)].
Declaration
float2[] physxVehicleEngine:torqueCurve
C++ Type
VtArray<GfVec2f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float2Array
- UsdAttribute CreateTorqueCurveAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTorqueCurveAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingRateFullThrottleAttr() const#
Damping rate of engine when full throttle is applied (units: torque * seconds = mass * distance * distance / seconds). The value has to be greater or equal 0.
Note: if the clutch is engaged (any gear except neutral) then the damping rate applied at run-time is an interpolation between dampingRateZeroThrottleClutchEngaged (see corresponding attribute) and dampingRateFullThrottle: dampingRateZeroThrottleClutchEngaged + ((dampingRateFullThrottle-dampingRateZeroThrottleClutchEngaged) * acceleratorPedal).
Note: if the clutch is disengaged (in neutral gear) the damping rate applied at run-time is an interpolation between dampingRateZeroThrottleClutchDisengaged (see corresponding attribute) and dampingRateFullThrottle: dampingRateZeroThrottleClutchDisengaged + ((dampingRateFullThrottle-dampingRateZeroThrottleClutchDisengaged) * acceleratorPedal).
Note: the default value -1 is not a valid value as such but will result in the value 0.15 being used (in meter length scale and kilogram mass scale or the equivalent if other units are used).
Declaration
float physxVehicleEngine:dampingRateFullThrottle = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingRateFullThrottleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingRateFullThrottleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingRateZeroThrottleClutchEngagedAttr() const#
Damping rate of engine when no throttle is applied and the clutch is engaged (units: torque * seconds = mass * distance * distance / seconds). See attribute “dampingRateFullThrottle” for information about the effect of the value. The value has to be greater or equal 0.
Note: the default value -1 is not a valid value as such but will result in the value 2.0 being used (in meter length scale and kilogram mass scale or the equivalent if other units are used).
Declaration
float physxVehicleEngine:dampingRateZeroThrottleClutchEngaged = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingRateZeroThrottleClutchEngagedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingRateZeroThrottleClutchEngagedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingRateZeroThrottleClutchDisengagedAttr() const#
Damping rate of engine when no throttle is applied and the clutch is disengaged (units: torque * seconds = mass * distance * distance / seconds). See attribute “dampingRateFullThrottle” for information about the effect of the value. The value has to be greater or equal 0.
Note: the default value -1 is not a valid value as such but will result in the value 0.35 being used (in meter length scale and kilogram mass scale or the equivalent if other units are used).
Declaration
float physxVehicleEngine:dampingRateZeroThrottleClutchDisengaged = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingRateZeroThrottleClutchDisengagedAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingRateZeroThrottleClutchDisengagedAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleEngineAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleEngineAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleEngineAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleEngineAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleEngineAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleEngineAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleEngineAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleGearsAPI : public UsdAPISchemaBase#
Properties of PhysX vehicle gears. If the gears setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleDriveStandardAPI applied. If the intent is to share the gears setup, PhysxVehicleGearsAPI can be applied to a separate prim which can be linked to (see PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleGearsAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleGearsAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleGearsAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleGearsAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleGearsAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleGearsAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleGearsAPI()#
Destructor.
-
UsdAttribute GetRatiosAttr() const#
The gear ratios. First entry is for reverse, then there is support for up to 30 gears (neutral has a fixed value of 0 and is not represented in this array). The value for reverse has to be negative, else a positive value is expected and the ratios have to form a descending sequence.
Note: if not defined, the following values will be used: [-4.0, 4.0, 2.0, 1.5, 1.1, 1.0].
Declaration
float[] physxVehicleGears:ratios
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateRatiosAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRatiosAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRatioScaleAttr() const#
Multiplier for gear ratio values. Final gear ratio is computed as ratios[currentGear] * ratioScale. The value has to be positive.
Note: if not defined, the value 4.0 will be used.
Declaration
float physxVehicleGears:ratioScale
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRatioScaleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRatioScaleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSwitchTimeAttr() const#
Time it takes to switch gear (units: seconds).
Note: if not defined, the value 0.5 will be used.
Declaration
float physxVehicleGears:switchTime
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSwitchTimeAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSwitchTimeAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleGearsAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleGearsAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleGearsAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleGearsAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleGearsAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleGearsAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleGearsAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI : public UsdAPISchemaBase#
Describes which wheels of a vehicle are driven as well as the distribution of the drive torque among those wheels. Has to be applied to a prim with PhysxVehicleAPI applied. Can only be used for vehicles that have a drive (see PhysxVehicleDriveBasicAPI or PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI()#
Destructor.
-
UsdAttribute GetWheelsAttr() const#
List of indices, referencing the wheels that are driven (receiving torque from the engine). The indices refer to the attribute “index” of PhysxVehicleWheelAttachmentAPI.
Declaration
int[] physxVehicleMultiWheelDifferential:wheels
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateWheelsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTorqueRatiosAttr() const#
Defines how the drive torque should get distributed among the wheels specified in the “wheels” attribute. The provided ratios must be in range [-1, 1] and under normal circumstances the absolute values should sum up to 1. If the attribute is defined, then the length of the array needs to match the length of the “wheels” array. If the attribute is not defined, the torque will get split equally among all driven wheels.
Declaration
float[] physxVehicleMultiWheelDifferential:torqueRatios
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateTorqueRatiosAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTorqueRatiosAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAverageWheelSpeedRatiosAttr() const#
Defines how the speeds of the driven wheels get weighted when computing the average wheel speed at the clutch (for computing clutch slip). The provided ratios must be in range [0, 1] and under normal circumstances sum up to 1. If the attribute is defined, then the length of the array needs to match the length of the “wheels” array. If the attribute is not defined, the wheel speeds of all driven wheels will get weighted equally.
Note: if a vehicle is using a PhysxVehicleDriveBasicAPI drive, then this attribute should not be used.
Declaration
float[] physxVehicleMultiWheelDifferential:averageWheelSpeedRatios
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateAverageWheelSpeedRatiosAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAverageWheelSpeedRatiosAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleMultiWheelDifferentialAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI : public UsdAPISchemaBase#
Describes a system of graphs to define nonlinear responses to PhysxVehicleControllerAPI command values like accelerator, brake0, brake1 and steer. The normalized response will be a function of the command value and the longitudinal vehicle speed. The response will be computed by interpolating between the points of the graph and then interpolating those results again between the closest graphs. One example usage of nonlinear command response is a brake pedal that has an almost flat response when tipped slightly but a very strong response from a certain point on. Another example is the steering wheel showing a strong response for a large input at low speed but only a weak response at high speed.
This multipleApply schema can be used to control the response to steering (use instance name TfToken “steer”) and braking (use instance name TfTokens “brakes0” or “brakes1”). It can also control the response to the accelerator but only in combination with the basic drive (use instance name TfToken “drive”). Furthermore, this API has to be applied to the appropriate prims to take effect: “steer” has to be applied to a prim that has PhysxVehicleSteeringAPI or PhysxVehicleAckermannSteeringAPI applied. “brakes0”/”brakes1” have to be applied to a prim that has PhysxVehicleBrakesAPI:brakes0/brakes1 applied. “drive” has to be applied to a prim that has PhysxVehicleDriveBasicAPI applied.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI(
- const UsdPrim &prim = UsdPrim(),
- const TfToken &name = TfToken(),
Construct a PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI on UsdPrim
prim
with namename
. Equivalent to PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI::Get( prim.GetStage(), prim.GetPath().AppendProperty( “physxVehicleNCR:name”));.for a valid
prim
, but will not immediately throw an error for an invalidprim
- inline explicit PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI(
- const UsdSchemaBase &schemaObj,
- const TfToken &name,
Construct a PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI on the prim held by
schemaObj
with namename
. Should be preferred over PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI(schemaObj.GetPrim(), name), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI()#
Destructor.
-
inline TfToken GetName() const#
Returns the name of this multiple-apply schema instance.
-
UsdAttribute GetCommandValuesAttr() const#
The command values to define response graphs for. Each listed command value (in range [0, 1], steer commands are treated symmetrically) has to point to a graph in speedResponses. The command values refer to steer, brake0 etc. The values have to be strictly increasing. The number of entries has to match the number of entries in speedResponsesPerCommandValue and is limited to 8. Every command value needs at least one entry in speedResponses.
Declaration
float[] commandValues
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateCommandValuesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCommandValuesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpeedResponsesPerCommandValueAttr() const#
List of indices pointing to the start of a response graph for a certain command value. The index values have to be strictly increasing. The graph for command value commandValues[i] starts at entry speedResponses[speedResponsesPerCommandValue[i]] and stops at entry speedResponses[speedResponsesPerCommandValue[i+1] - 1]. The number of entries has to match the number of entries in commandValues and has the same maximum limit.
Declaration
int[] speedResponsesPerCommandValue
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateSpeedResponsesPerCommandValueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpeedResponsesPerCommandValueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpeedResponsesAttr() const#
List of pairs that define points in graphs of longitudinal speed vs. normalized response. The first value of the pair is the longitudinal speed, the second value is the expected response (in range [0, 1]). The longitudinal speed values within a graph have to be strictly increasing. The maximum allowed number of entries is 64. See speedResponsesPerCommandValue for how the different graphs are accessed.
Declaration
float2[] speedResponses
C++ Type
VtArray<GfVec2f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float2Array
- UsdAttribute CreateSpeedResponsesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpeedResponsesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Members
-
path physxVehicleNCR#
Return a PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object.path
must be of the format.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static TfTokenVector GetSchemaAttributeNames(
- bool includeInherited,
- const TfToken &instanceName,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes for a given instance name. Does not include attributes that may be authored by custom/extended methods of the schemas involved. The names returned will have the proper namespace prefix.
- static PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI Get(
- const UsdPrim &prim,
- const TfToken &name,
Return a PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI with name
name
holding the primprim
. Shorthand for PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI(prim, name);.
- static std::vector<PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI> GetAll(
- const UsdPrim &prim,
Return a vector of all named instances of PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI on the given
prim
.
-
static bool IsSchemaPropertyBaseName(const TfToken &baseName)#
Checks if the given name
baseName
is the base name of a property of PhysxVehicleNonlinearCommandResponseAPI.
- static bool IsPhysxVehicleNonlinearCommandResponseAPIPath(
- const SdfPath &path,
- TfToken *name,
Checks if the given path
path
is of an API schema of type PhysxVehicleNonlinearCommandResponseAPI. If so, it stores the instance name of the schema inname
and returns true. Otherwise, it returns false.
- static bool CanApply(
- const UsdPrim &prim,
- const TfToken &name,
- std::string *whyNot = nullptr,
Returns true if this multiple-apply API schema can be applied, with the given instance name,
name
, to the givenprim
. If this schema can not be a applied the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI Apply(
- const UsdPrim &prim,
- const TfToken &name,
Applies this multiple-apply API schema to the given
prim
along with the given instance name,name
.This information is stored by adding “PhysxVehicleNonlinearCommandResponseAPI:<i>name</i>” to the token-valued, listOp metadata apiSchemas on the prim. For example, if
name
is ‘instance1’, the token ‘PhysxVehicleNonlinearCommandResponseAPI:instance1’ is added to ‘apiSchemas’.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::MultipleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleSteeringAPI : public UsdAPISchemaBase#
Describes a steering system for a vehicle by specifying which wheels are connected to the steer control and by defining the maximum steer angle for those wheels (see PhysxVehicleControllerAPI for the steer control). This API schema has to be applied to a prim with PhysxVehicleAPI applied. Can only be used for vehicles that have a drive (see PhysxVehicleDriveBasicAPI or PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleSteeringAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleSteeringAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleSteeringAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleSteeringAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleSteeringAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleSteeringAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleSteeringAPI()#
Destructor.
-
UsdAttribute GetWheelsAttr() const#
List of indices, referencing the wheels that are going to be steered. The indices refer to the attribute “index” of PhysxVehicleWheelAttachmentAPI. If not specified, every wheel will be affected by the steer control using an angle multiplier of 1 (see attribute angleMultipliers).
Declaration
int[] physxVehicleSteering:wheels
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateWheelsAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelsAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSteerAngleAttr() const#
The maximum steer angle (in radians) that can be achieved by the wheels. Has to be in range [-pi, pi] when multiplied by the attribute angleMultipliers. The steer angle of wheels[i] will be defined by maxSteerAngle * angleMultipliers[i] * physxVehicleController:steer (see PhysxVehicleControllerAPI).
Declaration
float physxVehicleSteering:maxSteerAngle = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxSteerAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSteerAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetAngleMultipliersAttr() const#
Allows to adjust the max steer angle for each wheel that is steered. The values are unitless multipliers. See maxSteerAngle for how these multipliers affect the steer angle of a wheel. If the attribute is defined, then the length of the array needs to match the length of the “wheels” array. If the attribute is not defined, a multiplier value of 1 will be used for all steered wheels.
Declaration
float[] physxVehicleSteering:angleMultipliers
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateAngleMultipliersAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetAngleMultipliersAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleSteeringAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleSteeringAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleSteeringAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleSteeringAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleSteeringAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleSteeringAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleSteeringAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleSuspensionAPI : public UsdAPISchemaBase#
Properties of a PhysX vehicle wheel suspension. If the suspension setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleWheelAttachmentAPI applied. If the intent is to share the suspension setup, PhysxVehicleSuspensionAPI can be applied to a separate prim which can be linked to (see PhysxVehicleWheelAttachmentAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleSuspensionAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleSuspensionAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleSuspensionAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleSuspensionAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleSuspensionAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleSuspensionAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleSuspensionAPI()#
Destructor.
-
UsdAttribute GetSpringStrengthAttr() const#
Spring strength of suspension unit (units: force / distance = mass / seconds / seconds).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleSuspension:springStrength
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringStrengthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringStrengthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSpringDamperRateAttr() const#
Spring damper rate of suspension unit (units: force * seconds / distance = mass / seconds).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleSuspension:springDamperRate
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSpringDamperRateAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSpringDamperRateAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTravelDistanceAttr() const#
Distance the wheel can travel along the suspension when going from max compression to max droop (units: distance). The value has to be positive.
Note: either this attribute or the deprecated maxCompression/maxDroop have to to be specified (with the former taking precedence). When migrating from the deprecated attributes, travelDistance can be set to the sum of maxCompression and maxDroop.
Declaration
float physxVehicleSuspension:travelDistance
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateTravelDistanceAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTravelDistanceAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxCompressionAttr() const#
Deprecated. Please use travelDistance instead.
Maximum compression from rest state allowed by suspension spring (units: distance). The value has to be positive.
Note: will be ignored if travelDistance is authored.
Declaration
float physxVehicleSuspension:maxCompression
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxCompressionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxCompressionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxDroopAttr() const#
Deprecated. Please use travelDistance instead.
Maximum elongation from rest state allowed by suspension spring (units: distance). The value has to be positive unless it should get computed automatically in which case any negative number can be used to indicate as much. It is highly recommended to chose a value close to: sprungMass * gravity / springStrength.
Note: will be ignored if travelDistance is authored.
Declaration
float physxVehicleSuspension:maxDroop
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxDroopAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxDroopAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSprungMassAttr() const#
Mass of vehicle that is supported by suspension spring (units: mass). If set to 0, the sprung mass will get computed automatically.
Note: it is not possible for a vehicle to have some sprung mass values being user-defined and some being computed automatically. Either all values have to be user-defined or all have to be set to 0 for auto-computation.
Declaration
float physxVehicleSuspension:sprungMass = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSprungMassAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSprungMassAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCamberAtRestAttr() const#
Deprecated. Please use PhysxVehicleSuspensionComplianceAPI instead.
Camber angle (in radians) of wheel when the suspension is at its rest position.
Note: will be ignored if PhysxVehicleSuspensionComplianceAPI is used.
Declaration
float physxVehicleSuspension:camberAtRest
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCamberAtRestAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCamberAtRestAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCamberAtMaxCompressionAttr() const#
Deprecated. Please use PhysxVehicleSuspensionComplianceAPI instead.
Camber angle (in radians) of wheel when the suspension is at maximum compression.
Note: will be ignored if PhysxVehicleSuspensionComplianceAPI is used.
Declaration
float physxVehicleSuspension:camberAtMaxCompression
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCamberAtMaxCompressionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCamberAtMaxCompressionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCamberAtMaxDroopAttr() const#
Deprecated. Please use PhysxVehicleSuspensionComplianceAPI instead.
Camber angle (in radians) of wheel when the suspension is at maximum droop.
Note: will be ignored if PhysxVehicleSuspensionComplianceAPI is used.
Declaration
float physxVehicleSuspension:camberAtMaxDroop
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCamberAtMaxDroopAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCamberAtMaxDroopAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleSuspensionAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleSuspensionAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleSuspensionAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleSuspensionAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleSuspensionAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleSuspensionAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleSuspensionAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleSuspensionComplianceAPI : public UsdAPISchemaBase#
Compliance describes how toe and camber angle and force application points are affected by suspension compression. Each compliance term is in the form of a graph with up to 3 points. The points in the graph consist of a normalized jounce value (with 0 meaning fully elongated and 1 fully compressed suspension) and a corresponding compliance value (which can be an angle or point etc. depending on the specific compliance term). The sequence of points must respresent monotonically increasing values of normalized jounce. The actual compliance value will be computed by linear interpolation based on the current normalized jounce. If any graph has zero points in it, a value of 0.0 is used for the compliance value. If any graph has 1 point in it, the compliance value of that point is used directly. This API schema has to be applied to a prim with PhysxVehicleWheelAttachmentAPI applied. If defined, then this setup takes precedence over the deprecated attributes suspensionForceAppPointOffset and tireForceAppPointOffset of the PhysxVehicleWheelAttachmentAPI API schema, the deprecated attributes camberAtRest, camberAtMaxCompression, camberAtMaxDroop of the PhysxVehicleSuspensionAPI API schema as well as the deprecated attribute toeAngle of the PhysxVehicleWheelAPI API schema.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleSuspensionComplianceAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleSuspensionComplianceAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleSuspensionComplianceAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleSuspensionComplianceAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleSuspensionComplianceAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleSuspensionComplianceAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleSuspensionComplianceAPI()#
Destructor.
-
UsdAttribute GetWheelToeAngleAttr() const#
A graph of toe angle against normalized jounce with the toe angle expressed in radians in the range [-pi, pi]. See the class documentation for general info about the nature of these graphs and the data requirements.
Note: the toe angle is applied in the suspension frame (see PhysxVehicleWheelAttachmentAPI).
Declaration
float2[] physxVehicleSuspensionCompliance:wheelToeAngle
C++ Type
VtArray<GfVec2f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float2Array
- UsdAttribute CreateWheelToeAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelToeAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheelCamberAngleAttr() const#
A graph of camber angle against normalized jounce with the camber angle expressed in radians in the range [-pi, pi]. See the class documentation for general info about the nature of these graphs and the data requirements.
Note: the camber angle is applied in the suspension frame (see PhysxVehicleWheelAttachmentAPI).
Declaration
float2[] physxVehicleSuspensionCompliance:wheelCamberAngle
C++ Type
VtArray<GfVec2f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float2Array
- UsdAttribute CreateWheelCamberAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelCamberAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSuspensionForceAppPointAttr() const#
Suspension forces are applied at an offset from the suspension frame (see PhysxVehicleWheelAttachmentAPI). An entry in this array defines this offset for a given normalized jounce value (which is the first element in the float4 while the other 3 elements are used to store the x, y, z coordinates of the offset). See the class documentation for general info about the nature of these compliance terms and the data requirements.
Declaration
float4[] physxVehicleSuspensionCompliance:suspensionForceAppPoint
C++ Type
VtArray<GfVec4f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float4Array
- UsdAttribute CreateSuspensionForceAppPointAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSuspensionForceAppPointAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTireForceAppPointAttr() const#
Tire forces are applied at an offset from the suspension frame (see PhysxVehicleWheelAttachmentAPI). An entry in this array defines this offset for a given normalized jounce value (which is the first element in the float4 while the other 3 elements are used to store the x, y, z coordinates of the offset). See the class documentation for general info about the nature of these compliance terms and the data requirements.
Declaration
float4[] physxVehicleSuspensionCompliance:tireForceAppPoint
C++ Type
VtArray<GfVec4f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float4Array
- UsdAttribute CreateTireForceAppPointAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTireForceAppPointAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleSuspensionComplianceAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleSuspensionComplianceAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleSuspensionComplianceAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleSuspensionComplianceAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleSuspensionComplianceAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleSuspensionComplianceAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleSuspensionComplianceAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleTankControllerAPI : public UsdAPISchemaBase#
PhysX vehicle tank controller to divert torque from the engine to the wheels of the tracks of a wheel based tank vehicle (see PhysxVehicleTankDifferentialAPI). Note that the “accelerator” attribute of PhysxVehicleControllerAPI still drives the engine torque whereas the thrust controls introduced here define how that torque gets diverted to the wheels, so both controls need to be used to drive a wheel based tank vehicle usually. This API schema has to be applied to a prim with PhysxVehicleAPI applied. Can only be used for vehicles that have a standard drive and a tank differential defined (see PhysxVehicleDriveStandardAPI, PhysxVehicleTankDifferentialAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleTankControllerAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleTankControllerAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleTankControllerAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleTankControllerAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleTankControllerAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleTankControllerAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleTankControllerAPI()#
Destructor.
-
UsdAttribute GetThrust0Attr() const#
Magnitude of thrust to apply to the tracks that are assigned to thrust control 0. Values have to be in [-1.0, 1.0] with the sign dictating whether the thrust will be applied positively or negatively with respect to the gearing ratio.
Declaration
float physxVehicleTankController:thrust0 = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateThrust0Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetThrust0Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetThrust1Attr() const#
Magnitude of thrust to apply to the tracks that are assigned to thrust control 1. Values have to be in [-1.0, 1.0] with the sign dictating whether the thrust will be applied positively or negatively with respect to the gearing ratio.
Declaration
float physxVehicleTankController:thrust1 = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateThrust1Attr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetThrust1Attr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleTankControllerAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleTankControllerAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleTankControllerAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleTankControllerAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleTankControllerAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleTankControllerAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleTankControllerAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleTankDifferentialAPI : public UsdAPISchemaBase#
Differential to set up a wheeled tank vehicle. Describes which wheels of a vehicle are part of the tank tracks. The wheels in each tank track have a constraint applied to them to enforce the rule that they all have the same longitudinal speed at the contact point between the wheel and the tank track. Driven wheels that are not part of a tank track receive the torque split specified in physxVehicleMultiWheelDifferential:torqueRatios. Has to be applied to a prim with PhysxVehicleAPI applied. Can only be used for vehicles that have a standard drive (see PhysxVehicleDriveStandardAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleTankDifferentialAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleTankDifferentialAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleTankDifferentialAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleTankDifferentialAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleTankDifferentialAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleTankDifferentialAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleTankDifferentialAPI()#
Destructor.
-
UsdAttribute GetNumberOfWheelsPerTrackAttr() const#
For each track, this array holds the number of wheels assigned to that track.
Declaration
int[] physxVehicleTankDifferential:numberOfWheelsPerTrack
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateNumberOfWheelsPerTrackAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetNumberOfWheelsPerTrackAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetThrustIndexPerTrackAttr() const#
For each track, this array holds the index of the thrust control (0 or 1, see PhysxVehicleTankControllerAPI) that drives the track. The length of the array needs to match the length of the “numberOfWheelsPerTrack” array.
Declaration
int[] physxVehicleTankDifferential:thrustIndexPerTrack
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateThrustIndexPerTrackAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetThrustIndexPerTrackAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTrackToWheelIndicesAttr() const#
For each track, this array holds the start index of the list describing the wheels that are assigned to that track (e.g., the list of wheel indices assigned to the track with index 2 starts at: wheelIndicesInTrackOrder[trackToWheelIndices[2]]). The length of the array needs to match the length of the “numberOfWheelsPerTrack” array.
Declaration
int[] physxVehicleTankDifferential:trackToWheelIndices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateTrackToWheelIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTrackToWheelIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheelIndicesInTrackOrderAttr() const#
The wheels (identified by wheel attachment indices, see attribtue “index” of PhysxVehicleWheelAttachmentAPI) assigned to track 0, followed by the wheels assigned to track 1 and so on. The length of the array is expected to be equal (or larger than) the number of wheels that are assigned to tracks.
Declaration
int[] physxVehicleTankDifferential:wheelIndicesInTrackOrder
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateWheelIndicesInTrackOrderAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelIndicesInTrackOrderAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleTankDifferentialAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleTankDifferentialAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleTankDifferentialAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleTankDifferentialAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleTankDifferentialAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleTankDifferentialAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleTankDifferentialAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleTireAPI : public UsdAPISchemaBase#
Properties of a PhysX vehicle tire. If the tire setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleWheelAttachmentAPI applied. If the intent is to share the tire setup, PhysxVehicleTireAPI can be applied to a separate prim which can be linked to (see PhysxVehicleWheelAttachmentAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleTireAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleTireAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleTireAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleTireAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleTireAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleTireAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleTireAPI()#
Destructor.
-
UsdAttribute GetLatStiffXAttr() const#
Deprecated. Please use lateralStiffnessGraph instead.
Tire lateral stiffness is a graph of tire load that has linear behavior near zero load and flattens at large loads. The parameter describes the minimum normalized load (load/restLoad) that gives a flat lateral stiffness response to load.
Note: will be ignored if lateralStiffnessGraph is used.
Declaration
float physxVehicleTire:latStiffX = 2
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLatStiffXAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLatStiffXAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLatStiffYAttr() const#
Deprecated. Please use lateralStiffnessGraph instead.
Tire lateral stiffness is a graph of tire load that has linear behavior near zero load and flattens at large loads. The parameter describes the maximum possible value of lateralStiffness/restLoad that occurs when (load/restLoad) >= latStiffX. If load/restLoad is greater than latStiffX then the lateral stiffness is latStiffY*restLoad, else the lateral stiffness is latStiffY*(load/latStiffX).
Note: will be ignored if lateralStiffnessGraph is used.
Note: if not defined, the value 17.095 will be used.
Declaration
float physxVehicleTire:latStiffY
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLatStiffYAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLatStiffYAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLateralStiffnessGraphAttr() const#
Tire lateral stiffness is represented as a graph of tire load that has linear behavior near zero load and flattens at large loads. The first value of the parameter describes the minimum normalized load (load/restLoad) that gives a flat lateral stiffness response to load. This value has to be greater or equal 0. The second value of the parameter defines the lateral stiffness when the response is flat (the max lateral stiffness, units: mass * distance / seconds / seconds). This value has to be positive.
Note: the default value (0, 0) is not a valid value as such but indicates that the deprecated attributes latStiffX and latStiffY should be used instead.
Declaration
float2 physxVehicleTire:lateralStiffnessGraph = (0, 0)
C++ Type
GfVec2f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float2
- UsdAttribute CreateLateralStiffnessGraphAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLateralStiffnessGraphAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLongitudinalStiffnessPerUnitGravityAttr() const#
Deprecated. Please use longitudinalStiffness instead.
Tire longitudinal stiffness per unit gravitational acceleration. Longitudinal stiffness of the tire is calculated as gravitationalAcceleration*longitudinalStiffnessPerUnitGravity.
Note: will be ignored if longitudinalStiffness is used.
Note: if not defined, the value 500 will be used.
Declaration
float physxVehicleTire:longitudinalStiffnessPerUnitGravity
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLongitudinalStiffnessPerUnitGravityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLongitudinalStiffnessPerUnitGravityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetLongitudinalStiffnessAttr() const#
Tire longitudinal stiffness (units: mass * distance / seconds / seconds). The value has to be positive. The resulting longitudinal force can be approximated as: longitudinalStiffness*longitudinalSlip.
Note: the default value 0 is not a valid value as such but indicates that the deprecated attribute longitudinalStiffnessPerUnitGravity should be used instead.
Declaration
float physxVehicleTire:longitudinalStiffness = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateLongitudinalStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetLongitudinalStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCamberStiffnessPerUnitGravityAttr() const#
Deprecated. Please use camberStiffness instead.
Tire camber stiffness per unit gravitational acceleration. Camber stiffness of the tire is calculated as gravitationalAcceleration*camberStiffnessPerUnitGravity.
Note: will be ignored if camberStiffness is used.
Declaration
float physxVehicleTire:camberStiffnessPerUnitGravity = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCamberStiffnessPerUnitGravityAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCamberStiffnessPerUnitGravityAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetCamberStiffnessAttr() const#
Tire camber stiffness (units: mass * distance / seconds / seconds / radians). The value has to be greater or equal 0. Camber force can be approximated as: camberStiffness*camberAngle.
Note: the default value -1 is not a valid value as such but indicates that the deprecated attribute camberStiffnessPerUnitGravity should be used instead.
Declaration
float physxVehicleTire:camberStiffness = -1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateCamberStiffnessAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetCamberStiffnessAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetFrictionVsSlipGraphAttr() const#
Graph of friction vs longitudinal slip with 3 points. The friction value extracted from this graph will be multiplied with the friction value of the combination of ground material and tire type. The array is expected to have 3 entries/points. For the first point, the first value is always zero and the second value is the friction available at zero longitudinal slip. For the second point, the first value is the longitudinal slip with maximum friction and the second value is the maximum friction. For the third point, the first value is the end point of the graph and the second value is the friction for slips greater than the end point of the graph. Note that the friction value of the first point is typically smaller than the friction value of the second point and the friction value of the second point is typically larger than the friction value of the third point.
Note: if not defined, the following values will be used: [(0.0, 1.0), (0.1, 1.0), (1.0, 1.0)].
Declaration
float2[] physxVehicleTire:frictionVsSlipGraph
C++ Type
VtArray<GfVec2f>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float2Array
- UsdAttribute CreateFrictionVsSlipGraphAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionVsSlipGraphAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetRestLoadAttr() const#
The load that develops on the tire when the vehicle is at rest on a flat plane (units: force = mass * distance / seconds / seconds). The value has to be greater or equal 0. If set to 0, the rest load will get computed automatically using the approximation of: gravitational acceleration * sprungMass.
Note: it is not possible for a vehicle to have some rest load values being user-defined and some being computed automatically. Either all values have to be user-defined or all have to be set to 0 for auto-computation.
Declaration
float physxVehicleTire:restLoad = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRestLoadAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRestLoadAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetFrictionTableRel() const#
A relationship to a PhysxVehicleTireFrictionTable instance.
Note: if not defined, a default friction table will be used.
-
UsdRelationship CreateFrictionTableRel() const#
See GetFrictionTableRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleTireAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleTireAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleTireAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleTireAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleTireAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleTireAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleTireAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleTireFrictionTable : public UsdTyped#
Table defining the friction values of a tire against a given set of ground materials.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleTireFrictionTable(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleTireFrictionTable on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleTireFrictionTable::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleTireFrictionTable(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleTireFrictionTable on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleTireFrictionTable(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleTireFrictionTable()#
Destructor.
-
UsdAttribute GetFrictionValuesAttr() const#
The friction values to use for the tire against the ground materials listed under groundMaterials. The array needs to have the same size as the list of materials specified in groundMaterials.
Declaration
float[] frictionValues
C++ Type
VtArray<float>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->FloatArray
- UsdAttribute CreateFrictionValuesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetFrictionValuesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDefaultFrictionValueAttr() const#
The friction value to use for the tire against the ground if the material of the ground surface is not among the materials listed in groundMaterials. The value has to be greater or equal 0.
Declaration
float defaultFrictionValue = 1
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDefaultFrictionValueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDefaultFrictionValueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetGroundMaterialsRel() const#
Relationships to Material instances that have PhysicsMaterialAPI applied. For each material, a friction value has to be specified in the frictionValues attribute. If a material is encountered that has not been listed, the value declared in defaultFrictionValue will be used.
-
UsdRelationship CreateGroundMaterialsRel() const#
See GetGroundMaterialsRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleTireFrictionTable Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleTireFrictionTable holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleTireFrictionTable(stage->GetPrimAtPath(path));
- static PhysxSchemaPhysxVehicleTireFrictionTable Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleWheelAPI : public UsdAPISchemaBase#
Properties of a PhysX vehicle wheel. If the wheel setup does not need to be shared among vehicle instances, it can be applied to the prim which has PhysxVehicleWheelAttachmentAPI applied. If the intent is to share the wheel setup, PhysxVehicleWheelAPI can be applied to a separate prim which can be linked to (see PhysxVehicleWheelAttachmentAPI).
Public Functions
- inline explicit PhysxSchemaPhysxVehicleWheelAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleWheelAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleWheelAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleWheelAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleWheelAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleWheelAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleWheelAPI()#
Destructor.
-
UsdAttribute GetRadiusAttr() const#
The radius of the wheel (metal wheel plus tire).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleWheel:radius
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateRadiusAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetRadiusAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWidthAttr() const#
The width of the wheel (metal wheel plus tire).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleWheel:width
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateWidthAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWidthAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMassAttr() const#
The mass of the wheel (metal wheel plus tire).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleWheel:mass
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMassAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMassAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMoiAttr() const#
The moment of inertia (metal wheel plus tire) about the rolling axis (units: mass * distance * distance).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleWheel:moi
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMoiAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMoiAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDampingRateAttr() const#
The damping rate applied to the wheel (units: torque * seconds = mass * distance * distance / seconds).
Note: this attribute has to be specified (there is no default).
Declaration
float physxVehicleWheel:dampingRate
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDampingRateAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDampingRateAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxBrakeTorqueAttr() const#
Deprecated. Please use PhysxVehicleBrakesAPI instead.
The maximum brake torque that can be applied to the wheel (units: mass * distance * distance / seconds / seconds).
Note: will be ignored if PhysxVehicleBrakesAPI is used.
Declaration
float physxVehicleWheel:maxBrakeTorque
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxBrakeTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxBrakeTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxHandBrakeTorqueAttr() const#
Deprecated. Please use PhysxVehicleBrakesAPI instead.
The maximum hand brake torque that can be applied to the wheel (units: mass * distance * distance / seconds / seconds).
Note: will be ignored if PhysxVehicleBrakesAPI is used.
Declaration
float physxVehicleWheel:maxHandBrakeTorque
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxHandBrakeTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxHandBrakeTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetMaxSteerAngleAttr() const#
Deprecated. Please use PhysxVehicleSteeringAPI instead.
The maximum steer angle (in radians) that can be achieved by the wheel.
Note: will be ignored if PhysxVehicleSteeringAPI is used.
Declaration
float physxVehicleWheel:maxSteerAngle
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateMaxSteerAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetMaxSteerAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetToeAngleAttr() const#
Deprecated. Please use PhysxVehicleSuspensionComplianceAPI instead.
The wheel toe angle (in radians).
Note: currently, this attribute is only considered for vehicles using the PhysxVehicleDriveStandard drive type.
Note: will be ignored if PhysxVehicleSuspensionComplianceAPI is used.
Declaration
float physxVehicleWheel:toeAngle
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateToeAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetToeAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleWheelAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleWheelAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleWheelAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
-
static PhysxSchemaPhysxVehicleWheelAPI Apply(const UsdPrim &prim)#
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleWheelAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleWheelAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleWheelAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleWheelAttachmentAPI : public UsdAPISchemaBase#
For every wheel of a vehicle, this class defines the attachment properties. Has to be applied to a prim that is a descendant of a prim with PhysxVehicleAPI applied. If the wheel attachment prim (the prim with PhysxVehicleWheelAttachmentAPI applied) is a UsdGeomXformable, then the position and orientation of the prim will be set by the vehicle simulation. If the wheel attachment prim has PhysicsCollisionAPI applied, then none of its descendants are allowed to have PhysicsCollisionAPI applied. If the wheel attachment prim is a UsdGeomXformable but does not have PhysicsCollisionAPI applied, then exactly one direct child prim among all descendants is allowed to have PhysicsCollisionAPI applied. That prim will be interpreted as the collision geometry of the wheel and its position and orientation will be set by the vehicle simulation too. Note that the relative transform between the collision geometry prim and the wheel attachment prim at the start of the simulation will be maintained (the relative transform with respect to the center of mass frame of the vehicle rigid body that is). If there is no desire to have the vehicle simulation control the transform of the wheel attachment prim, then a prim type that is not a UsdGeomXformable should be chosen.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleWheelAttachmentAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleWheelAttachmentAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleWheelAttachmentAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleWheelAttachmentAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleWheelAttachmentAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleWheelAttachmentAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleWheelAttachmentAPI()#
Destructor.
-
UsdAttribute GetIndexAttr() const#
The index of the wheel attachment. Some other components will reference the wheel attachments based on this index. Either all indices of a vehicle’s wheel attachments need to be -1 or they need to cover all entries in the group {0, .., (numberOfWheels-1)}. All indices being -1 covers the case where wheels are controlled directly through PhysxVehicleWheelControllerAPI, for example, or when deprecated APIs are used still.
Declaration
int physxVehicleWheelAttachment:index = -1
C++ Type
int
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Int
- UsdAttribute CreateIndexAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetIndexAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSuspensionTravelDirectionAttr() const#
The direction of the suspension travel (towards the wheel). The custom metadata physxVehicle:referenceFrameIsCenterOfMass (on the vehicle prim) defines in what frame the direction is specified. If set to true, the direction is assumed to be relative to the vehicle center of mass frame, else relative to the frame of the vehicle prim. Note that using the center of mass frame as reference is deprecated and will not be supported for much longer.
Note: this attribute has to be specified (there is no default).
Declaration
vector3f physxVehicleWheelAttachment:suspensionTravelDirection
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Vector3f
- UsdAttribute CreateSuspensionTravelDirectionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSuspensionTravelDirectionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSuspensionFramePositionAttr() const#
The point of the suspension at max compression. The custom metadata physxVehicle:referenceFrameIsCenterOfMass (on the vehicle prim) defines in what frame the position is specified. If set to true, the position is assumed to be relative to the vehicle center of mass frame, else relative to the frame of the vehicle prim. Note that using the center of mass frame as reference is deprecated and will not be supported for much longer. Camber, steer and toe angles are all applied in the suspension frame. The vehicle frame transform of the wheel will be defined by: centerOfMassFrame * suspensionFrame * wheelFrame (if physxVehicle:referenceFrameIsCenterOfMass is true, else centerOfMassFrame has to be omitted).
Note: either this attribute or the deprecated wheelCenterOfMassOffset have to to be specified (with the former taking precedence).
Declaration
point3f physxVehicleWheelAttachment:suspensionFramePosition
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateSuspensionFramePositionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSuspensionFramePositionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSuspensionFrameOrientationAttr() const#
The orientation of the suspension frame. The custom metadata physxVehicle:referenceFrameIsCenterOfMass (on the vehicle prim) defines in what frame the orientation is specified. If set to true, the orientation is assumed to be relative to the vehicle center of mass frame, else relative to the frame of the vehicle prim. Note that using the center of mass frame as reference is deprecated and will not be supported for much longer. Camber, steer and toe angles are all applied in the suspension frame. The vehicle frame transform of the wheel will be defined by: centerOfMassFrame * suspensionFrame * wheelFrame (if physxVehicle:referenceFrameIsCenterOfMass is true, else centerOfMassFrame has to be omitted).
Declaration
quatf physxVehicleWheelAttachment:suspensionFrameOrientation = (1, 0, 0, 0)
C++ Type
GfQuatf
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Quatf
- UsdAttribute CreateSuspensionFrameOrientationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSuspensionFrameOrientationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSuspensionForceAppPointOffsetAttr() const#
Deprecated. Please use PhysxVehicleSuspensionComplianceAPI instead.
The location where the suspension force gets applied. The custom metadata physxVehicle:referenceFrameIsCenterOfMass (on the vehicle prim) defines in what frame the offset is specified. If set to true, the offset is assumed to be relative to the vehicle center of mass frame, else relative to the frame of the vehicle prim. Note that using the center of mass frame as reference is deprecated and will not be supported for much longer.
Note: will be ignored if PhysxVehicleSuspensionComplianceAPI is used.
Declaration
float3 physxVehicleWheelAttachment:suspensionForceAppPointOffset
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateSuspensionForceAppPointOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSuspensionForceAppPointOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheelCenterOfMassOffsetAttr() const#
Deprecated. Please use suspensionFramePosition instead.
The location of the wheel centre when at rest. The custom metadata physxVehicle:referenceFrameIsCenterOfMass (on the vehicle prim) defines in what frame the offset is specified. If set to true, the offset is assumed to be relative to the vehicle center of mass frame, else relative to the frame of the vehicle prim. Note that using the center of mass frame as reference is deprecated and will not be supported for much longer.
Note: will be ignored if suspensionFramePosition is authored.
Declaration
float3 physxVehicleWheelAttachment:wheelCenterOfMassOffset
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateWheelCenterOfMassOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelCenterOfMassOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetTireForceAppPointOffsetAttr() const#
Deprecated. Please use PhysxVehicleSuspensionComplianceAPI instead.
The location where the tire force gets applied. The custom metadata physxVehicle:referenceFrameIsCenterOfMass (on the vehicle prim) defines in what frame the offset is specified. If set to true, the offset is assumed to be relative to the vehicle center of mass frame, else relative to the frame of the vehicle prim. Note that using the center of mass frame as reference is deprecated and will not be supported for much longer.
Note: will be ignored if PhysxVehicleSuspensionComplianceAPI is used.
Declaration
float3 physxVehicleWheelAttachment:tireForceAppPointOffset
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float3
- UsdAttribute CreateTireForceAppPointOffsetAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetTireForceAppPointOffsetAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheelFramePositionAttr() const#
A position offset of the wheel center relative to the suspension frame. Non-zero values might be used, for example, if the steer axis should not go through the wheel center.
Declaration
point3f physxVehicleWheelAttachment:wheelFramePosition = (0, 0, 0)
C++ Type
GfVec3f
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Point3f
- UsdAttribute CreateWheelFramePositionAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelFramePositionAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetWheelFrameOrientationAttr() const#
An orientation adjustment of the wheel relative to the suspension frame. The rotation angle around the wheel’s lateral axis is applied in this frame.
Declaration
quatf physxVehicleWheelAttachment:wheelFrameOrientation = (1, 0, 0, 0)
C++ Type
GfQuatf
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Quatf
- UsdAttribute CreateWheelFrameOrientationAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetWheelFrameOrientationAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetDrivenAttr() const#
Deprecated. Please use PhysxVehicleMultiWheelDifferentialAPI instead.
True if the tire is driven by the engine through the transmission. Will be ignored if the vehicle has no drive specified (see PhysxVehicleAPI:drive) or if PhysxVehicleMultiWheelDifferentialAPI is used instead.
Declaration
bool physxVehicleWheelAttachment:driven
C++ Type
bool
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Bool
- UsdAttribute CreateDrivenAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDrivenAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdRelationship GetWheelRel() const#
A relationship to a PhysxVehicleWheelAPI prim.
Note: either this relationship has to be specified or the prim must have PhysxVehicleWheelAPI applied (none or both of the two is invalid).
-
UsdRelationship CreateWheelRel() const#
See GetWheelRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetTireRel() const#
A relationship to a PhysxVehicleTireAPI prim.
Note: either this relationship has to be specified or the prim must have PhysxVehicleTireAPI applied (none or both of the two is invalid).
-
UsdRelationship CreateTireRel() const#
See GetTireRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetSuspensionRel() const#
A relationship to a PhysxVehicleSuspensionAPI prim.
Note: either this relationship has to be specified or the prim must have PhysxVehicleSuspensionAPI applied (none or both of the two is invalid).
-
UsdRelationship CreateSuspensionRel() const#
See GetSuspensionRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
-
UsdRelationship GetCollisionGroupRel() const#
A relationship to a PhysicsCollisionGroup instance that defines what the wheel/suspension scene queries should treat as a ground surface to collide against. If not specified, no specific filtering will be applied.
-
UsdRelationship CreateCollisionGroupRel() const#
See GetCollisionGroupRel(), and also Usd_Create_Or_Get_Property for when to use Get vs Create.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleWheelAttachmentAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleWheelAttachmentAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleWheelAttachmentAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleWheelAttachmentAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleWheelAttachmentAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleWheelAttachmentAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleWheelAttachmentAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaPhysxVehicleWheelControllerAPI : public UsdAPISchemaBase#
PhysX wheel controller that samples user input and allows direct control of the wheel torques and steer angle to drive the vehicle. Has to be applied to a prim with PhysxVehicleWheelAttachmentAPI applied and be a descendant of a prim with a PhysxVehicleAPI applied.
Public Functions
- inline explicit PhysxSchemaPhysxVehicleWheelControllerAPI(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaPhysxVehicleWheelControllerAPI on UsdPrim
prim
. Equivalent to PhysxSchemaPhysxVehicleWheelControllerAPI::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaPhysxVehicleWheelControllerAPI(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaPhysxVehicleWheelControllerAPI on the prim held by
schemaObj
. Should be preferred over PhysxSchemaPhysxVehicleWheelControllerAPI(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaPhysxVehicleWheelControllerAPI()#
Destructor.
-
UsdAttribute GetDriveTorqueAttr() const#
Torque to increase wheel angular rate and speed up (units: mass * distance * distance / seconds / seconds).
Declaration
float physxVehicleWheelController:driveTorque = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateDriveTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetDriveTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetBrakeTorqueAttr() const#
Torque to decrease wheel angular rate and slow down (units: mass * distance * distance / seconds / seconds). The value has to be greater or equal zero.
Declaration
float physxVehicleWheelController:brakeTorque = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateBrakeTorqueAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetBrakeTorqueAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
-
UsdAttribute GetSteerAngleAttr() const#
Steer angle of the wheel in radians.
Declaration
float physxVehicleWheelController:steerAngle = 0
C++ Type
float
Usd_Datatypes “Usd Type”
SdfValueTypeNames->Float
- UsdAttribute CreateSteerAngleAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetSteerAngleAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaPhysxVehicleWheelControllerAPI Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaPhysxVehicleWheelControllerAPI holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaPhysxVehicleWheelControllerAPI(stage->GetPrimAtPath(path));
- static bool CanApply(
- const UsdPrim &prim,
- std::string *whyNot = nullptr,
Returns true if this single-apply API schema can be applied to the given
prim
. If this schema can not be a applied to the prim, this returns false and, if provided, populateswhyNot
with the reason it can not be applied.Note that if CanApply returns false, that does not necessarily imply that calling Apply will fail. Callers are expected to call CanApply before calling Apply if they want to ensure that it is valid to apply a schema.
See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- static PhysxSchemaPhysxVehicleWheelControllerAPI Apply(
- const UsdPrim &prim,
Applies this single-apply API schema to the given
prim
. This information is stored by adding “PhysxVehicleWheelControllerAPI” to the token-valued, listOp metadata apiSchemas on the prim.See also
UsdPrim::GetAppliedSchemas()
See also
UsdPrim::HasAPI()
See also
UsdPrim::CanApplyAPI()
See also
UsdPrim::ApplyAPI()
See also
UsdPrim::RemoveAPI()
- Returns:
A valid PhysxSchemaPhysxVehicleWheelControllerAPI object is returned upon success. An invalid (or empty) PhysxSchemaPhysxVehicleWheelControllerAPI object is returned upon failure. See UsdPrim::ApplyAPI() for conditions resulting in failure.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::SingleApplyAPI#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaTetrahedralMesh : public UsdGeomPointBased#
Deprecated: Will be replaced by UsdGeom.TetMesh in a future release. Describes a tetrahedral mesh in 3D space.
Public Functions
- inline explicit PhysxSchemaTetrahedralMesh(
- const UsdPrim &prim = UsdPrim(),
Construct a PhysxSchemaTetrahedralMesh on UsdPrim
prim
. Equivalent to PhysxSchemaTetrahedralMesh::Get(prim.GetStage(), prim.GetPath()) for a validprim
, but will not immediately throw an error for an invalidprim
.
- inline explicit PhysxSchemaTetrahedralMesh(
- const UsdSchemaBase &schemaObj,
Construct a PhysxSchemaTetrahedralMesh on the prim held by
schemaObj
. Should be preferred over PhysxSchemaTetrahedralMesh(schemaObj.GetPrim()), as it preserves SchemaBase state.
-
virtual ~PhysxSchemaTetrahedralMesh()#
Destructor.
-
UsdAttribute GetIndicesAttr() const#
Flat list of the index (into the ‘points’ attribute) of each vertex of each tetrahedron in the mesh.
Declaration
int[] indices
C++ Type
VtArray<int>
Usd_Datatypes “Usd Type”
SdfValueTypeNames->IntArray
- UsdAttribute CreateIndicesAttr(
- VtValue const &defaultValue = VtValue(),
- bool writeSparsely = false,
See GetIndicesAttr(), and also Usd_Create_Or_Get_Property for when to use Get vs Create. If specified, author
defaultValue
as the attribute’s default, sparsely (when it makes sense to do so) ifwriteSparsely
istrue
- the default forwriteSparsely
isfalse
.
Public Static Functions
- static const TfTokenVector &GetSchemaAttributeNames(
- bool includeInherited = true,
Return a vector of names of all pre-declared attributes for this schema class and all its ancestor classes. Does not include attributes that may be authored by custom/extended methods of the schemas involved.
- static PhysxSchemaTetrahedralMesh Get(
- const UsdStagePtr &stage,
- const SdfPath &path,
Return a PhysxSchemaTetrahedralMesh holding the prim adhering to this schema at
path
onstage
. If no prim exists atpath
onstage
, or if the prim at that path does not adhere to this schema, return an invalid schema object. This is shorthand for the following:PhysxSchemaTetrahedralMesh(stage->GetPrimAtPath(path));
- static PhysxSchemaTetrahedralMesh Define(
- const UsdStagePtr &stage,
- const SdfPath &path,
Attempt to ensure a UsdPrim adhering to this schema at
path
is defined (according to UsdPrim::IsDefined()) on this stage.If a prim adhering to this schema at
path
is already defined on this stage, return that prim. Otherwise author an SdfPrimSpec with specifier == SdfSpecifierDef and this schema’s prim type name for the prim atpath
at the current EditTarget. Author SdfPrimSpec s withspecifier
== SdfSpecifierDef and empty typeName at the current EditTarget for any nonexistent, or existing but not Defined ancestors.The given path must be an absolute prim path that does not contain any variant selections.
If it is impossible to author any of the necessary PrimSpecs, (for example, in case path cannot map to the current UsdEditTarget’s namespace) issue an error and return an invalid UsdPrim.
Note that this method may return a defined prim whose typeName does not specify this schema class, in case a stronger typeName opinion overrides the opinion at the current EditTarget.
Public Static Attributes
-
static const UsdSchemaKind schemaKind = UsdSchemaKind::ConcreteTyped#
Compile time constant representing what kind of schema this class is.
See also
UsdSchemaKind
Protected Functions
-
UsdSchemaKind _GetSchemaKind() const override#
Returns the kind of schema this class belongs to.
See also
UsdSchemaKind
-
class PhysxSchemaTokensType#
PhysxSchemaTokens provides static, efficient TfToken for use in all public USD API.
These tokens are auto-generated from the module’s schema, representing property names, for when you need to fetch an attribute or relationship directly by name, e.g. UsdPrim::GetAttribute(), in the most efficient manner, and allow the compiler to verify that you spelled the name correctly.
PhysxSchemaTokens also contains all of the allowedTokens values declared for schema builtin attributes of ‘token’ scene description type. Use PhysxSchemaTokens like so:
gprim.GetMyTokenValuedAttr().Set(PhysxSchemaTokens->acceleration);
Public Members
-
const TfToken acceleration#
“acceleration”
Fallback value for PhysxSchemaPhysxForceAPI::GetModeAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetUpdateModeAttr()
-
const TfToken actor0#
“actor0”
-
const TfToken actor1#
“actor1”
-
const TfToken alwaysUpdateEnabled#
“alwaysUpdateEnabled”
-
const TfToken Asynchronous#
“Asynchronous”
Possible value for PhysxSchemaPhysxSceneAPI::GetUpdateTypeAttr()
-
const TfToken attachmentEnabled#
“attachmentEnabled”
-
const TfToken average#
“average”
Fallback value for PhysxSchemaPhysxMaterialAPI::GetDampingCombineModeAttr(), Fallback value for PhysxSchemaPhysxMaterialAPI::GetFrictionCombineModeAttr(), Fallback value for PhysxSchemaPhysxMaterialAPI::GetRestitutionCombineModeAttr()
-
const TfToken BitsPerPixel16#
“BitsPerPixel16”
Fallback value for PhysxSchemaPhysxSDFMeshCollisionAPI::GetSdfBitsPerSubgridPixelAttr()
-
const TfToken BitsPerPixel32#
“BitsPerPixel32”
Possible value for PhysxSchemaPhysxSDFMeshCollisionAPI::GetSdfBitsPerSubgridPixelAttr()
-
const TfToken BitsPerPixel8#
“BitsPerPixel8”
Possible value for PhysxSchemaPhysxSDFMeshCollisionAPI::GetSdfBitsPerSubgridPixelAttr()
-
const TfToken brakes0#
“brakes0”
This token represents braking system 0 used in PhysxVehicleBrakesAPI. It also holds the instance name to use for PhysxVehicleNonlinearCommandResponseAPI when applied to braking system 0.
-
const TfToken brakes1#
“brakes1”
This token represents braking system 1 used in PhysxVehicleBrakesAPI. It also holds the instance name to use for PhysxVehicleNonlinearCommandResponseAPI when applied to braking system 1.
-
const TfToken clothConstaint#
“clothConstaint”
This token represents the collection name to use with PhysxCookedDataAPI to represent cooked data of a clothConstaint.
-
const TfToken collisionFilterIndices0#
“collisionFilterIndices0”
-
const TfToken collisionFilterIndices1#
“collisionFilterIndices1”
-
const TfToken collisionmeshes#
“collisionmeshes”
This token defines the PhysxMeshMergeCollisionAPI collection that gathers the collision meshes.
-
const TfToken constrained#
“constrained”
Possible value for PhysxSchemaPhysxCharacterControllerAPI::GetClimbingModeAttr()
-
const TfToken contactOffset#
“contactOffset”
-
const TfToken convexDecomposition#
“convexDecomposition”
This token represents the collection name to use with PhysxCookedDataAPI to represent cooked data of a convexDecomposition.
-
const TfToken convexHull#
“convexHull”
This token represents the collection name to use with PhysxCookedDataAPI to represent cooked data of a convexhull.
-
const TfToken defaultFrictionValue#
“defaultFrictionValue”
-
const TfToken Disabled#
“Disabled”
Possible value for PhysxSchemaPhysxSceneAPI::GetUpdateTypeAttr()
-
const TfToken drive#
“drive”
This token holds the instance name to use for PhysxVehicleNonlinearCommandResponseAPI when applying it to a basic drive.
-
const TfToken easy#
“easy”
Fallback value for PhysxSchemaPhysxCharacterControllerAPI::GetClimbingModeAttr()
-
const TfToken enableCCD#
“enableCCD”
-
const TfToken filterType0#
“filterType0”
-
const TfToken filterType1#
“filterType1”
-
const TfToken flood#
“flood”
Fallback value for PhysxSchemaPhysxSphereFillCollisionAPI::GetFillModeAttr()
-
const TfToken fluidRestOffset#
“fluidRestOffset”
-
const TfToken force#
“force”
Possible value for PhysxSchemaPhysxForceAPI::GetModeAttr()
-
const TfToken frictionValues#
“frictionValues”
-
const TfToken Geometry#
“Geometry”
Possible value for PhysxSchemaPhysxPhysicsAttachment::GetFilterType0Attr(), Possible value for PhysxSchemaPhysxPhysicsAttachment::GetFilterType1Attr()
-
const TfToken globalSelfCollisionEnabled#
“globalSelfCollisionEnabled”
-
const TfToken GPU#
“GPU”
Fallback value for PhysxSchemaPhysxSceneAPI::GetBroadphaseTypeAttr()
-
const TfToken groundMaterials#
“groundMaterials”
-
const TfToken indices#
“indices”
-
const TfToken max#
“max”
Possible value for PhysxSchemaPhysxMaterialAPI::GetDampingCombineModeAttr(), Possible value for PhysxSchemaPhysxMaterialAPI::GetFrictionCombineModeAttr(), Possible value for PhysxSchemaPhysxMaterialAPI::GetRestitutionCombineModeAttr()
-
const TfToken maxDepenetrationVelocity#
“maxDepenetrationVelocity”
-
const TfToken maxNeighborhood#
“maxNeighborhood”
-
const TfToken maxVelocity#
“maxVelocity”
-
const TfToken MBP#
“MBP”
Possible value for PhysxSchemaPhysxSceneAPI::GetBroadphaseTypeAttr()
-
const TfToken min#
“min”
Possible value for PhysxSchemaPhysxMaterialAPI::GetDampingCombineModeAttr(), Possible value for PhysxSchemaPhysxMaterialAPI::GetFrictionCombineModeAttr(), Possible value for PhysxSchemaPhysxMaterialAPI::GetRestitutionCombineModeAttr()
-
const TfToken multiply#
“multiply”
Possible value for PhysxSchemaPhysxMaterialAPI::GetDampingCombineModeAttr(), Possible value for PhysxSchemaPhysxMaterialAPI::GetFrictionCombineModeAttr(), Possible value for PhysxSchemaPhysxMaterialAPI::GetRestitutionCombineModeAttr()
-
const TfToken negX#
“negX”
Possible value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken negY#
“negY”
Possible value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken negZ#
“negZ”
Possible value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken neighborhoodScale#
“neighborhoodScale”
-
const TfToken nonParticleCollisionEnabled#
“nonParticleCollisionEnabled”
-
const TfToken particleContactOffset#
“particleContactOffset”
-
const TfToken particleSystemEnabled#
“particleSystemEnabled”
-
const TfToken patch#
“patch”
Fallback value for PhysxSchemaPhysxSceneAPI::GetFrictionTypeAttr()
-
const TfToken PCM#
“PCM”
Fallback value for PhysxSchemaPhysxSceneAPI::GetCollisionSystemAttr()
-
const TfToken PGS#
“PGS”
Possible value for PhysxSchemaPhysxSceneAPI::GetSolverTypeAttr()
-
const TfToken physicsBody0Indices#
“physics:body0Indices”
-
const TfToken physicsBody0s#
“physics:body0s”
-
const TfToken physicsBody1Indices#
“physics:body1Indices”
-
const TfToken physicsBody1s#
“physics:body1s”
-
const TfToken physicsGearRatio#
“physics:gearRatio”
-
const TfToken physicsHinge#
“physics:hinge”
-
const TfToken physicsHinge0#
“physics:hinge0”
-
const TfToken physicsHinge1#
“physics:hinge1”
-
const TfToken physicsLocalPos0s#
“physics:localPos0s”
-
const TfToken physicsLocalPos1s#
“physics:localPos1s”
-
const TfToken physicsLocalRot0s#
“physics:localRot0s”
-
const TfToken physicsLocalRot1s#
“physics:localRot1s”
-
const TfToken physicsPrismatic#
“physics:prismatic”
-
const TfToken physicsProtoIndices#
“physics:protoIndices”
-
const TfToken physicsPrototypes#
“physics:prototypes”
-
const TfToken physicsRatio#
“physics:ratio”
-
const TfToken physxArticulationArticulationEnabled#
“physxArticulation:articulationEnabled”
-
const TfToken physxArticulationEnabledSelfCollisions#
“physxArticulation:enabledSelfCollisions”
-
const TfToken physxArticulationSleepThreshold#
“physxArticulation:sleepThreshold”
-
const TfToken physxArticulationSolverPositionIterationCount#
“physxArticulation:solverPositionIterationCount”
-
const TfToken physxArticulationSolverVelocityIterationCount#
“physxArticulation:solverVelocityIterationCount”
-
const TfToken physxArticulationStabilizationThreshold#
“physxArticulation:stabilizationThreshold”
-
const TfToken physxAutoAttachmentCollisionFilteringOffset#
“physxAutoAttachment:collisionFilteringOffset”
-
const TfToken physxAutoAttachmentDeformableVertexOverlapOffset#
“physxAutoAttachment:deformableVertexOverlapOffset”
-
const TfToken physxAutoAttachmentEnableCollisionFiltering#
“physxAutoAttachment:enableCollisionFiltering”
-
const TfToken physxAutoAttachmentEnableDeformableFilteringPairs#
“physxAutoAttachment:enableDeformableFilteringPairs”
-
const TfToken physxAutoAttachmentEnableDeformableVertexAttachments#
“physxAutoAttachment:enableDeformableVertexAttachments”
-
const TfToken physxAutoAttachmentEnableRigidSurfaceAttachments#
“physxAutoAttachment:enableRigidSurfaceAttachments”
-
const TfToken physxAutoAttachmentRigidSurfaceSamplingDistance#
“physxAutoAttachment:rigidSurfaceSamplingDistance”
-
const TfToken physxAutoParticleClothDisableMeshWelding#
“physxAutoParticleCloth:disableMeshWelding”
-
const TfToken physxAutoParticleClothSpringBendStiffness#
“physxAutoParticleCloth:springBendStiffness”
-
const TfToken physxAutoParticleClothSpringDamping#
“physxAutoParticleCloth:springDamping”
-
const TfToken physxAutoParticleClothSpringShearStiffness#
“physxAutoParticleCloth:springShearStiffness”
-
const TfToken physxAutoParticleClothSpringStretchStiffness#
“physxAutoParticleCloth:springStretchStiffness”
-
const TfToken physxCameraSubject#
“physxCamera:subject”
-
const TfToken physxCharacterControllerClimbingMode#
“physxCharacterController:climbingMode”
-
const TfToken physxCharacterControllerContactOffset#
“physxCharacterController:contactOffset”
-
const TfToken physxCharacterControllerInvisibleWallHeight#
“physxCharacterController:invisibleWallHeight”
-
const TfToken physxCharacterControllerMaxJumpHeight#
“physxCharacterController:maxJumpHeight”
-
const TfToken physxCharacterControllerMoveTarget#
“physxCharacterController:moveTarget”
-
const TfToken physxCharacterControllerNonWalkableMode#
“physxCharacterController:nonWalkableMode”
-
const TfToken physxCharacterControllerScaleCoeff#
“physxCharacterController:scaleCoeff”
-
const TfToken physxCharacterControllerSimulationOwner#
“physxCharacterController:simulationOwner”
-
const TfToken physxCharacterControllerSlopeLimit#
“physxCharacterController:slopeLimit”
-
const TfToken physxCharacterControllerStepOffset#
“physxCharacterController:stepOffset”
-
const TfToken physxCharacterControllerUpAxis#
“physxCharacterController:upAxis”
-
const TfToken physxCharacterControllerVolumeGrowth#
“physxCharacterController:volumeGrowth”
-
const TfToken physxCollisionContactOffset#
“physxCollision:contactOffset”
-
const TfToken physxCollisionCustomGeometry#
“physxCollisionCustomGeometry”
This token represents the custom geometry option for cones and cylinders. The simulation will not use a convex approximation but a custom geometry instead.
-
const TfToken physxCollisionMinTorsionalPatchRadius#
“physxCollision:minTorsionalPatchRadius”
-
const TfToken physxCollisionRestOffset#
“physxCollision:restOffset”
-
const TfToken physxCollisionTorsionalPatchRadius#
“physxCollision:torsionalPatchRadius”
-
const TfToken physxContactReportReportPairs#
“physxContactReport:reportPairs”
-
const TfToken physxContactReportThreshold#
“physxContactReport:threshold”
-
const TfToken physxConvexDecompositionCollisionErrorPercentage#
“physxConvexDecompositionCollision:errorPercentage”
-
const TfToken physxConvexDecompositionCollisionHullVertexLimit#
“physxConvexDecompositionCollision:hullVertexLimit”
-
const TfToken physxConvexDecompositionCollisionMaxConvexHulls#
“physxConvexDecompositionCollision:maxConvexHulls”
-
const TfToken physxConvexDecompositionCollisionMinThickness#
“physxConvexDecompositionCollision:minThickness”
-
const TfToken physxConvexDecompositionCollisionShrinkWrap#
“physxConvexDecompositionCollision:shrinkWrap”
-
const TfToken physxConvexDecompositionCollisionVoxelResolution#
“physxConvexDecompositionCollision:voxelResolution”
-
const TfToken physxConvexHullCollisionHullVertexLimit#
“physxConvexHullCollision:hullVertexLimit”
-
const TfToken physxConvexHullCollisionMinThickness#
“physxConvexHullCollision:minThickness”
-
const TfToken physxCookedData#
“physxCookedData”
Property namespace prefix for the PhysxSchemaPhysxCookedDataAPI schema.
-
const TfToken physxCookedData_MultipleApplyTemplate_Buffer#
“physxCookedData:__INSTANCE_NAME__:buffer”
-
const TfToken physxDeformableBodyMaterialDampingScale#
“physxDeformableBodyMaterial:dampingScale”
-
const TfToken physxDeformableBodyMaterialDensity#
“physxDeformableBodyMaterial:density”
-
const TfToken physxDeformableBodyMaterialDynamicFriction#
“physxDeformableBodyMaterial:dynamicFriction”
-
const TfToken physxDeformableBodyMaterialElasticityDamping#
“physxDeformableBodyMaterial:elasticityDamping”
-
const TfToken physxDeformableBodyMaterialPoissonsRatio#
“physxDeformableBodyMaterial:poissonsRatio”
-
const TfToken physxDeformableBodyMaterialYoungsModulus#
“physxDeformableBodyMaterial:youngsModulus”
-
const TfToken physxDeformableCollisionIndices#
“physxDeformable:collisionIndices”
-
const TfToken physxDeformableCollisionPoints#
“physxDeformable:collisionPoints”
-
const TfToken physxDeformableCollisionRestPoints#
“physxDeformable:collisionRestPoints”
-
const TfToken physxDeformableDeformableEnabled#
“physxDeformable:deformableEnabled”
-
const TfToken physxDeformableDisableGravity#
“physxDeformable:disableGravity”
-
const TfToken physxDeformableEnableCCD#
“physxDeformable:enableCCD”
-
const TfToken physxDeformableMaxDepenetrationVelocity#
“physxDeformable:maxDepenetrationVelocity”
-
const TfToken physxDeformableRestPoints#
“physxDeformable:restPoints”
-
const TfToken physxDeformableSelfCollision#
“physxDeformable:selfCollision”
-
const TfToken physxDeformableSelfCollisionFilterDistance#
“physxDeformable:selfCollisionFilterDistance”
-
const TfToken physxDeformableSettlingThreshold#
“physxDeformable:settlingThreshold”
-
const TfToken physxDeformableSimulationIndices#
“physxDeformable:simulationIndices”
-
const TfToken physxDeformableSimulationOwner#
“physxDeformable:simulationOwner”
-
const TfToken physxDeformableSimulationPoints#
“physxDeformable:simulationPoints”
-
const TfToken physxDeformableSimulationRestPoints#
“physxDeformable:simulationRestPoints”
-
const TfToken physxDeformableSimulationVelocities#
“physxDeformable:simulationVelocities”
-
const TfToken physxDeformableSleepDamping#
“physxDeformable:sleepDamping”
-
const TfToken physxDeformableSleepThreshold#
“physxDeformable:sleepThreshold”
-
const TfToken physxDeformableSolverPositionIterationCount#
“physxDeformable:solverPositionIterationCount”
-
const TfToken physxDeformableSurfaceBendingStiffnessScale#
“physxDeformableSurface:bendingStiffnessScale”
-
const TfToken physxDeformableSurfaceCollisionIterationMultiplier#
“physxDeformableSurface:collisionIterationMultiplier”
-
const TfToken physxDeformableSurfaceCollisionPairUpdateFrequency#
“physxDeformableSurface:collisionPairUpdateFrequency”
-
const TfToken physxDeformableSurfaceFlatteningEnabled#
“physxDeformableSurface:flatteningEnabled”
-
const TfToken physxDeformableSurfaceMaterialDensity#
“physxDeformableSurfaceMaterial:density”
-
const TfToken physxDeformableSurfaceMaterialDynamicFriction#
“physxDeformableSurfaceMaterial:dynamicFriction”
-
const TfToken physxDeformableSurfaceMaterialPoissonsRatio#
“physxDeformableSurfaceMaterial:poissonsRatio”
-
const TfToken physxDeformableSurfaceMaterialThickness#
“physxDeformableSurfaceMaterial:thickness”
-
const TfToken physxDeformableSurfaceMaterialYoungsModulus#
“physxDeformableSurfaceMaterial:youngsModulus”
-
const TfToken physxDeformableSurfaceMaxVelocity#
“physxDeformableSurface:maxVelocity”
-
const TfToken physxDeformableVertexVelocityDamping#
“physxDeformable:vertexVelocityDamping”
-
const TfToken physxDiffuseParticlesAirDrag#
“physxDiffuseParticles:airDrag”
-
const TfToken physxDiffuseParticlesBubbleDrag#
“physxDiffuseParticles:bubbleDrag”
-
const TfToken physxDiffuseParticlesBuoyancy#
“physxDiffuseParticles:buoyancy”
-
const TfToken physxDiffuseParticlesCollisionDecay#
“physxDiffuseParticles:collisionDecay”
-
const TfToken physxDiffuseParticlesDiffuseParticlesEnabled#
“physxDiffuseParticles:diffuseParticlesEnabled”
-
const TfToken physxDiffuseParticlesDivergenceWeight#
“physxDiffuseParticles:divergenceWeight”
-
const TfToken physxDiffuseParticlesKineticEnergyWeight#
“physxDiffuseParticles:kineticEnergyWeight”
-
const TfToken physxDiffuseParticlesLifetime#
“physxDiffuseParticles:lifetime”
-
const TfToken physxDiffuseParticlesMaxDiffuseParticleMultiplier#
“physxDiffuseParticles:maxDiffuseParticleMultiplier”
-
const TfToken physxDiffuseParticlesPressureWeight#
“physxDiffuseParticles:pressureWeight”
-
const TfToken physxDiffuseParticlesThreshold#
“physxDiffuseParticles:threshold”
-
const TfToken physxDiffuseParticlesUseAccurateVelocity#
“physxDiffuseParticles:useAccurateVelocity”
-
const TfToken physxDroneCameraFeedForwardVelocityGain#
“physxDroneCamera:feedForwardVelocityGain”
-
const TfToken physxDroneCameraFollowDistance#
“physxDroneCamera:followDistance”
-
const TfToken physxDroneCameraFollowHeight#
“physxDroneCamera:followHeight”
-
const TfToken physxDroneCameraHorizontalVelocityGain#
“physxDroneCamera:horizontalVelocityGain”
-
const TfToken physxDroneCameraMaxDistance#
“physxDroneCamera:maxDistance”
-
const TfToken physxDroneCameraMaxSpeed#
“physxDroneCamera:maxSpeed”
-
const TfToken physxDroneCameraPositionOffset#
“physxDroneCamera:positionOffset”
-
const TfToken physxDroneCameraRotationFilterTimeConstant#
“physxDroneCamera:rotationFilterTimeConstant”
-
const TfToken physxDroneCameraVelocityFilterTimeConstant#
“physxDroneCamera:velocityFilterTimeConstant”
-
const TfToken physxDroneCameraVerticalVelocityGain#
“physxDroneCamera:verticalVelocityGain”
-
const TfToken physxFollowCameraCameraPositionTimeConstant#
“physxFollowCamera:cameraPositionTimeConstant”
-
const TfToken physxFollowCameraFollowMaxDistance#
“physxFollowCamera:followMaxDistance”
-
const TfToken physxFollowCameraFollowMaxSpeed#
“physxFollowCamera:followMaxSpeed”
-
const TfToken physxFollowCameraFollowMinDistance#
“physxFollowCamera:followMinDistance”
-
const TfToken physxFollowCameraFollowMinSpeed#
“physxFollowCamera:followMinSpeed”
-
const TfToken physxFollowCameraFollowTurnRateGain#
“physxFollowCamera:followTurnRateGain”
-
const TfToken physxFollowCameraLookAheadMaxSpeed#
“physxFollowCamera:lookAheadMaxSpeed”
-
const TfToken physxFollowCameraLookAheadMinDistance#
“physxFollowCamera:lookAheadMinDistance”
-
const TfToken physxFollowCameraLookAheadMinSpeed#
“physxFollowCamera:lookAheadMinSpeed”
-
const TfToken physxFollowCameraLookAheadTurnRateGain#
“physxFollowCamera:lookAheadTurnRateGain”
-
const TfToken physxFollowCameraLookPositionHeight#
“physxFollowCamera:lookPositionHeight”
-
const TfToken physxFollowCameraLookPositionTimeConstant#
“physxFollowCamera:lookPositionTimeConstant”
-
const TfToken physxFollowCameraPitchAngle#
“physxFollowCamera:pitchAngle”
-
const TfToken physxFollowCameraPitchAngleTimeConstant#
“physxFollowCamera:pitchAngleTimeConstant”
-
const TfToken physxFollowCameraPositionOffset#
“physxFollowCamera:positionOffset”
-
const TfToken physxFollowCameraSlowPitchAngleSpeed#
“physxFollowCamera:slowPitchAngleSpeed”
-
const TfToken physxFollowCameraSlowSpeedPitchAngleScale#
“physxFollowCamera:slowSpeedPitchAngleScale”
-
const TfToken physxFollowCameraVelocityNormalMinSpeed#
“physxFollowCamera:velocityNormalMinSpeed”
-
const TfToken physxFollowCameraYawAngle#
“physxFollowCamera:yawAngle”
-
const TfToken physxFollowCameraYawRateTimeConstant#
“physxFollowCamera:yawRateTimeConstant”
-
const TfToken physxFollowFollowCameraLookAheadMaxDistance#
“physxFollowFollowCamera:lookAheadMaxDistance”
-
const TfToken physxFollowLookCameraDownHillGroundAngle#
“physxFollowLookCamera:downHillGroundAngle”
-
const TfToken physxFollowLookCameraDownHillGroundPitch#
“physxFollowLookCamera:downHillGroundPitch”
-
const TfToken physxFollowLookCameraFollowReverseDistance#
“physxFollowLookCamera:followReverseDistance”
-
const TfToken physxFollowLookCameraFollowReverseSpeed#
“physxFollowLookCamera:followReverseSpeed”
-
const TfToken physxFollowLookCameraUpHillGroundAngle#
“physxFollowLookCamera:upHillGroundAngle”
-
const TfToken physxFollowLookCameraUpHillGroundPitch#
“physxFollowLookCamera:upHillGroundPitch”
-
const TfToken physxFollowLookCameraVelocityBlendTimeConstant#
“physxFollowLookCamera:velocityBlendTimeConstant”
-
const TfToken physxForceForce#
“physxForce:force”
-
const TfToken physxForceForceEnabled#
“physxForce:forceEnabled”
-
const TfToken physxForceMode#
“physxForce:mode”
-
const TfToken physxForceTorque#
“physxForce:torque”
-
const TfToken physxForceWorldFrameEnabled#
“physxForce:worldFrameEnabled”
-
const TfToken physxJointArmature#
“physxJoint:armature”
-
const TfToken physxJointJointFriction#
“physxJoint:jointFriction”
-
const TfToken physxJointMaxJointVelocity#
“physxJoint:maxJointVelocity”
-
const TfToken physxLimit#
“physxLimit”
Property namespace prefix for the PhysxSchemaPhysxLimitAPI schema.
-
const TfToken physxLimit_MultipleApplyTemplate_BounceThreshold#
“physxLimit:__INSTANCE_NAME__:bounceThreshold”
-
const TfToken physxLimit_MultipleApplyTemplate_Damping#
“physxLimit:__INSTANCE_NAME__:damping”
-
const TfToken physxLimit_MultipleApplyTemplate_Restitution#
“physxLimit:__INSTANCE_NAME__:restitution”
-
const TfToken physxLimit_MultipleApplyTemplate_Stiffness#
“physxLimit:__INSTANCE_NAME__:stiffness”
-
const TfToken physxMaterialCompliantContactAccelerationSpring#
“physxMaterial:compliantContactAccelerationSpring”
-
const TfToken physxMaterialCompliantContactDamping#
“physxMaterial:compliantContactDamping”
-
const TfToken physxMaterialCompliantContactStiffness#
“physxMaterial:compliantContactStiffness”
-
const TfToken physxMaterialDampingCombineMode#
“physxMaterial:dampingCombineMode”
-
const TfToken physxMaterialFrictionCombineMode#
“physxMaterial:frictionCombineMode”
-
const TfToken physxMaterialRestitutionCombineMode#
“physxMaterial:restitutionCombineMode”
-
const TfToken physxMimicJoint#
“physxMimicJoint”
Property namespace prefix for the PhysxSchemaPhysxMimicJointAPI schema.
-
const TfToken physxMimicJoint_MultipleApplyTemplate_Gearing#
“physxMimicJoint:__INSTANCE_NAME__:gearing”
-
const TfToken physxMimicJoint_MultipleApplyTemplate_Offset#
“physxMimicJoint:__INSTANCE_NAME__:offset”
-
const TfToken physxMimicJoint_MultipleApplyTemplate_ReferenceJoint#
“physxMimicJoint:__INSTANCE_NAME__:referenceJoint”
-
const TfToken physxMimicJoint_MultipleApplyTemplate_ReferenceJointAxis#
“physxMimicJoint:__INSTANCE_NAME__:referenceJointAxis”
-
const TfToken physxParticleAnisotropyMax#
“physxParticleAnisotropy:max”
-
const TfToken physxParticleAnisotropyMin#
“physxParticleAnisotropy:min”
-
const TfToken physxParticleAnisotropyParticleAnisotropyEnabled#
“physxParticleAnisotropy:particleAnisotropyEnabled”
-
const TfToken physxParticleAnisotropyScale#
“physxParticleAnisotropy:scale”
-
const TfToken physxParticleFluid#
“physxParticle:fluid”
-
const TfToken physxParticleIsosurfaceGridFilteringPasses#
“physxParticleIsosurface:gridFilteringPasses”
-
const TfToken physxParticleIsosurfaceGridSmoothingRadius#
“physxParticleIsosurface:gridSmoothingRadius”
-
const TfToken physxParticleIsosurfaceGridSpacing#
“physxParticleIsosurface:gridSpacing”
-
const TfToken physxParticleIsosurfaceIsosurfaceEnabled#
“physxParticleIsosurface:isosurfaceEnabled”
-
const TfToken physxParticleIsosurfaceMaxSubgrids#
“physxParticleIsosurface:maxSubgrids”
-
const TfToken physxParticleIsosurfaceMaxTriangles#
“physxParticleIsosurface:maxTriangles”
-
const TfToken physxParticleIsosurfaceMaxVertices#
“physxParticleIsosurface:maxVertices”
-
const TfToken physxParticleIsosurfaceNumMeshNormalSmoothingPasses#
“physxParticleIsosurface:numMeshNormalSmoothingPasses”
-
const TfToken physxParticleIsosurfaceNumMeshSmoothingPasses#
“physxParticleIsosurface:numMeshSmoothingPasses”
-
const TfToken physxParticleIsosurfaceSurfaceDistance#
“physxParticleIsosurface:surfaceDistance”
-
const TfToken physxParticleParticleEnabled#
“physxParticle:particleEnabled”
-
const TfToken physxParticleParticleGroup#
“physxParticle:particleGroup”
-
const TfToken physxParticleParticleSystem#
“physxParticle:particleSystem”
-
const TfToken physxParticlePressure#
“physxParticle:pressure”
-
const TfToken physxParticleRestPoints#
“physxParticle:restPoints”
-
const TfToken physxParticleSamplingMaxSamples#
“physxParticleSampling:maxSamples”
-
const TfToken physxParticleSamplingParticles#
“physxParticleSampling:particles”
-
const TfToken physxParticleSamplingSamplingDistance#
“physxParticleSampling:samplingDistance”
-
const TfToken physxParticleSamplingVolume#
“physxParticleSampling:volume”
-
const TfToken physxParticleSelfCollision#
“physxParticle:selfCollision”
-
const TfToken physxParticleSelfCollisionFilter#
“physxParticle:selfCollisionFilter”
-
const TfToken physxParticleSimulationPoints#
“physxParticle:simulationPoints”
-
const TfToken physxParticleSmoothingParticleSmoothingEnabled#
“physxParticleSmoothing:particleSmoothingEnabled”
-
const TfToken physxParticleSmoothingStrength#
“physxParticleSmoothing:strength”
-
const TfToken physxParticleSpringDampings#
“physxParticle:springDampings”
-
const TfToken physxParticleSpringIndices#
“physxParticle:springIndices”
-
const TfToken physxParticleSpringRestLengths#
“physxParticle:springRestLengths”
-
const TfToken physxParticleSpringStiffnesses#
“physxParticle:springStiffnesses”
-
const TfToken physxPBDMaterialAdhesion#
“physxPBDMaterial:adhesion”
-
const TfToken physxPBDMaterialAdhesionOffsetScale#
“physxPBDMaterial:adhesionOffsetScale”
-
const TfToken physxPBDMaterialCflCoefficient#
“physxPBDMaterial:cflCoefficient”
-
const TfToken physxPBDMaterialCohesion#
“physxPBDMaterial:cohesion”
-
const TfToken physxPBDMaterialDamping#
“physxPBDMaterial:damping”
-
const TfToken physxPBDMaterialDensity#
“physxPBDMaterial:density”
-
const TfToken physxPBDMaterialDrag#
“physxPBDMaterial:drag”
-
const TfToken physxPBDMaterialFriction#
“physxPBDMaterial:friction”
-
const TfToken physxPBDMaterialGravityScale#
“physxPBDMaterial:gravityScale”
-
const TfToken physxPBDMaterialLift#
“physxPBDMaterial:lift”
-
const TfToken physxPBDMaterialParticleAdhesionScale#
“physxPBDMaterial:particleAdhesionScale”
-
const TfToken physxPBDMaterialParticleFrictionScale#
“physxPBDMaterial:particleFrictionScale”
-
const TfToken physxPBDMaterialSurfaceTension#
“physxPBDMaterial:surfaceTension”
-
const TfToken physxPBDMaterialViscosity#
“physxPBDMaterial:viscosity”
-
const TfToken physxPBDMaterialVorticityConfinement#
“physxPBDMaterial:vorticityConfinement”
-
const TfToken physxPhysicsDistanceJointSpringDamping#
“physxPhysicsDistanceJoint:springDamping”
-
const TfToken physxPhysicsDistanceJointSpringEnabled#
“physxPhysicsDistanceJoint:springEnabled”
-
const TfToken physxPhysicsDistanceJointSpringStiffness#
“physxPhysicsDistanceJoint:springStiffness”
-
const TfToken physxResidualReportingMaxResidualPositionIteration#
“physxResidualReporting:maxResidualPositionIteration”
-
const TfToken physxResidualReportingMaxResidualVelocityIteration#
“physxResidualReporting:maxResidualVelocityIteration”
-
const TfToken physxResidualReportingRmsResidualPositionIteration#
“physxResidualReporting:rmsResidualPositionIteration”
-
const TfToken physxResidualReportingRmsResidualVelocityIteration#
“physxResidualReporting:rmsResidualVelocityIteration”
-
const TfToken physxRigidBodyAngularDamping#
“physxRigidBody:angularDamping”
-
const TfToken physxRigidBodyCfmScale#
“physxRigidBody:cfmScale”
-
const TfToken physxRigidBodyContactSlopCoefficient#
“physxRigidBody:contactSlopCoefficient”
-
const TfToken physxRigidBodyDisableGravity#
“physxRigidBody:disableGravity”
-
const TfToken physxRigidBodyEnableCCD#
“physxRigidBody:enableCCD”
-
const TfToken physxRigidBodyEnableGyroscopicForces#
“physxRigidBody:enableGyroscopicForces”
-
const TfToken physxRigidBodyEnableSpeculativeCCD#
“physxRigidBody:enableSpeculativeCCD”
-
const TfToken physxRigidBodyLinearDamping#
“physxRigidBody:linearDamping”
-
const TfToken physxRigidBodyLockedPosAxis#
“physxRigidBody:lockedPosAxis”
-
const TfToken physxRigidBodyLockedRotAxis#
“physxRigidBody:lockedRotAxis”
-
const TfToken physxRigidBodyMaxAngularVelocity#
“physxRigidBody:maxAngularVelocity”
-
const TfToken physxRigidBodyMaxContactImpulse#
“physxRigidBody:maxContactImpulse”
-
const TfToken physxRigidBodyMaxDepenetrationVelocity#
“physxRigidBody:maxDepenetrationVelocity”
-
const TfToken physxRigidBodyMaxLinearVelocity#
“physxRigidBody:maxLinearVelocity”
-
const TfToken physxRigidBodyRetainAccelerations#
“physxRigidBody:retainAccelerations”
-
const TfToken physxRigidBodySleepThreshold#
“physxRigidBody:sleepThreshold”
-
const TfToken physxRigidBodySolveContact#
“physxRigidBody:solveContact”
-
const TfToken physxRigidBodySolverPositionIterationCount#
“physxRigidBody:solverPositionIterationCount”
-
const TfToken physxRigidBodySolverVelocityIterationCount#
“physxRigidBody:solverVelocityIterationCount”
-
const TfToken physxRigidBodyStabilizationThreshold#
“physxRigidBody:stabilizationThreshold”
-
const TfToken physxSceneBounceThreshold#
“physxScene:bounceThreshold”
-
const TfToken physxSceneBroadphaseType#
“physxScene:broadphaseType”
-
const TfToken physxSceneCollisionSystem#
“physxScene:collisionSystem”
-
const TfToken physxSceneEnableCCD#
“physxScene:enableCCD”
-
const TfToken physxSceneEnableEnhancedDeterminism#
“physxScene:enableEnhancedDeterminism”
-
const TfToken physxSceneEnableExternalForcesEveryIteration#
“physxScene:enableExternalForcesEveryIteration”
-
const TfToken physxSceneEnableGPUDynamics#
“physxScene:enableGPUDynamics”
-
const TfToken physxSceneEnableResidualReporting#
“physxScene:enableResidualReporting”
-
const TfToken physxSceneEnableSceneQuerySupport#
“physxScene:enableSceneQuerySupport”
-
const TfToken physxSceneEnableStabilization#
“physxScene:enableStabilization”
-
const TfToken physxSceneFrictionCorrelationDistance#
“physxScene:frictionCorrelationDistance”
-
const TfToken physxSceneFrictionOffsetThreshold#
“physxScene:frictionOffsetThreshold”
-
const TfToken physxSceneFrictionType#
“physxScene:frictionType”
-
const TfToken physxSceneGpuCollisionStackSize#
“physxScene:gpuCollisionStackSize”
-
const TfToken physxSceneGpuFoundLostAggregatePairsCapacity#
“physxScene:gpuFoundLostAggregatePairsCapacity”
-
const TfToken physxSceneGpuFoundLostPairsCapacity#
“physxScene:gpuFoundLostPairsCapacity”
-
const TfToken physxSceneGpuHeapCapacity#
“physxScene:gpuHeapCapacity”
-
const TfToken physxSceneGpuMaxDeformableSurfaceContacts#
“physxScene:gpuMaxDeformableSurfaceContacts”
-
const TfToken physxSceneGpuMaxNumPartitions#
“physxScene:gpuMaxNumPartitions”
-
const TfToken physxSceneGpuMaxParticleContacts#
“physxScene:gpuMaxParticleContacts”
-
const TfToken physxSceneGpuMaxRigidContactCount#
“physxScene:gpuMaxRigidContactCount”
-
const TfToken physxSceneGpuMaxRigidPatchCount#
“physxScene:gpuMaxRigidPatchCount”
-
const TfToken physxSceneGpuMaxSoftBodyContacts#
“physxScene:gpuMaxSoftBodyContacts”
-
const TfToken physxSceneGpuTempBufferCapacity#
“physxScene:gpuTempBufferCapacity”
-
const TfToken physxSceneGpuTotalAggregatePairsCapacity#
“physxScene:gpuTotalAggregatePairsCapacity”
-
const TfToken physxSceneInvertCollisionGroupFilter#
“physxScene:invertCollisionGroupFilter”
-
const TfToken physxSceneMaxBiasCoefficient#
“physxScene:maxBiasCoefficient”
-
const TfToken physxSceneMaxPositionIterationCount#
“physxScene:maxPositionIterationCount”
-
const TfToken physxSceneMaxVelocityIterationCount#
“physxScene:maxVelocityIterationCount”
-
const TfToken physxSceneMinPositionIterationCount#
“physxScene:minPositionIterationCount”
-
const TfToken physxSceneMinVelocityIterationCount#
“physxScene:minVelocityIterationCount”
-
const TfToken physxSceneQuasistaticEnableQuasistatic#
“physxSceneQuasistatic:enableQuasistatic”
-
const TfToken physxSceneReportKinematicKinematicPairs#
“physxScene:reportKinematicKinematicPairs”
-
const TfToken physxSceneReportKinematicStaticPairs#
“physxScene:reportKinematicStaticPairs”
-
const TfToken physxSceneSolverType#
“physxScene:solverType”
-
const TfToken physxSceneTimeStepsPerSecond#
“physxScene:timeStepsPerSecond”
-
const TfToken physxSceneUpdateType#
“physxScene:updateType”
-
const TfToken physxSDFMeshCollisionSdfBitsPerSubgridPixel#
“physxSDFMeshCollision:sdfBitsPerSubgridPixel”
-
const TfToken physxSDFMeshCollisionSdfEnableRemeshing#
“physxSDFMeshCollision:sdfEnableRemeshing”
-
const TfToken physxSDFMeshCollisionSdfMargin#
“physxSDFMeshCollision:sdfMargin”
-
const TfToken physxSDFMeshCollisionSdfNarrowBandThickness#
“physxSDFMeshCollision:sdfNarrowBandThickness”
-
const TfToken physxSDFMeshCollisionSdfResolution#
“physxSDFMeshCollision:sdfResolution”
-
const TfToken physxSDFMeshCollisionSdfSubgridResolution#
“physxSDFMeshCollision:sdfSubgridResolution”
-
const TfToken physxSDFMeshCollisionSdfTriangleCountReductionFactor#
“physxSDFMeshCollision:sdfTriangleCountReductionFactor”
-
const TfToken physxSphereFillCollisionFillMode#
“physxSphereFillCollision:fillMode”
-
const TfToken physxSphereFillCollisionMaxSpheres#
“physxSphereFillCollision:maxSpheres”
-
const TfToken physxSphereFillCollisionSeedCount#
“physxSphereFillCollision:seedCount”
-
const TfToken physxSphereFillCollisionVoxelResolution#
“physxSphereFillCollision:voxelResolution”
-
const TfToken physxSurfaceVelocitySurfaceAngularVelocity#
“physxSurfaceVelocity:surfaceAngularVelocity”
-
const TfToken physxSurfaceVelocitySurfaceVelocity#
“physxSurfaceVelocity:surfaceVelocity”
-
const TfToken physxSurfaceVelocitySurfaceVelocityEnabled#
“physxSurfaceVelocity:surfaceVelocityEnabled”
-
const TfToken physxSurfaceVelocitySurfaceVelocityLocalSpace#
“physxSurfaceVelocity:surfaceVelocityLocalSpace”
-
const TfToken physxTendon#
“physxTendon”
Property namespace prefix for the PhysxSchemaPhysxTendonAxisAPI schema., Property namespace prefix for the PhysxSchemaPhysxTendonAxisRootAPI schema., Property namespace prefix for the PhysxSchemaPhysxTendonAttachmentAPI schema., Property namespace prefix for the PhysxSchemaPhysxTendonAttachmentRootAPI schema., Property namespace prefix for the PhysxSchemaPhysxTendonAttachmentLeafAPI schema.
-
const TfToken physxTendon_MultipleApplyTemplate_Damping#
“physxTendon:__INSTANCE_NAME__:damping”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentRootAPI
-
const TfToken physxTendon_MultipleApplyTemplate_ForceCoefficient#
“physxTendon:__INSTANCE_NAME__:forceCoefficient”
-
const TfToken physxTendon_MultipleApplyTemplate_Gearing#
“physxTendon:__INSTANCE_NAME__:gearing”
PhysxSchemaPhysxTendonAxisAPI, PhysxSchemaPhysxTendonAttachmentAPI
-
const TfToken physxTendon_MultipleApplyTemplate_JointAxis#
“physxTendon:__INSTANCE_NAME__:jointAxis”
-
const TfToken physxTendon_MultipleApplyTemplate_LimitStiffness#
“physxTendon:__INSTANCE_NAME__:limitStiffness”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentRootAPI
-
const TfToken physxTendon_MultipleApplyTemplate_LocalPos#
“physxTendon:__INSTANCE_NAME__:localPos”
-
const TfToken physxTendon_MultipleApplyTemplate_LowerLimit#
“physxTendon:__INSTANCE_NAME__:lowerLimit”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentLeafAPI
-
const TfToken physxTendon_MultipleApplyTemplate_Offset#
“physxTendon:__INSTANCE_NAME__:offset”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentRootAPI
-
const TfToken physxTendon_MultipleApplyTemplate_ParentAttachment#
“physxTendon:__INSTANCE_NAME__:parentAttachment”
-
const TfToken physxTendon_MultipleApplyTemplate_ParentLink#
“physxTendon:__INSTANCE_NAME__:parentLink”
-
const TfToken physxTendon_MultipleApplyTemplate_RestLength#
“physxTendon:__INSTANCE_NAME__:restLength”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentLeafAPI
-
const TfToken physxTendon_MultipleApplyTemplate_Stiffness#
“physxTendon:__INSTANCE_NAME__:stiffness”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentRootAPI
-
const TfToken physxTendon_MultipleApplyTemplate_TendonEnabled#
“physxTendon:__INSTANCE_NAME__:tendonEnabled”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentRootAPI
-
const TfToken physxTendon_MultipleApplyTemplate_UpperLimit#
“physxTendon:__INSTANCE_NAME__:upperLimit”
PhysxSchemaPhysxTendonAxisRootAPI, PhysxSchemaPhysxTendonAttachmentLeafAPI
-
const TfToken physxTriangleMeshCollisionWeldTolerance#
“physxTriangleMeshCollision:weldTolerance”
-
const TfToken physxTriangleMeshSimplificationCollisionMetric#
“physxTriangleMeshSimplificationCollision:metric”
-
const TfToken physxTriangleMeshSimplificationCollisionWeldTolerance#
“physxTriangleMeshSimplificationCollision:weldTolerance”
-
const TfToken physxTriggerEnterScriptType#
“physxTrigger:enterScriptType”
-
const TfToken physxTriggerLeaveScriptType#
“physxTrigger:leaveScriptType”
-
const TfToken physxTriggerOnEnterScript#
“physxTrigger:onEnterScript”
-
const TfToken physxTriggerOnLeaveScript#
“physxTrigger:onLeaveScript”
-
const TfToken physxTriggerTriggeredCollisions#
“physxTrigger:triggeredCollisions”
-
const TfToken physxVehicleAckermannSteeringMaxSteerAngle#
“physxVehicleAckermannSteering:maxSteerAngle”
-
const TfToken physxVehicleAckermannSteeringStrength#
“physxVehicleAckermannSteering:strength”
-
const TfToken physxVehicleAckermannSteeringTrackWidth#
“physxVehicleAckermannSteering:trackWidth”
-
const TfToken physxVehicleAckermannSteeringWheel0#
“physxVehicleAckermannSteering:wheel0”
-
const TfToken physxVehicleAckermannSteeringWheel1#
“physxVehicleAckermannSteering:wheel1”
-
const TfToken physxVehicleAckermannSteeringWheelBase#
“physxVehicleAckermannSteering:wheelBase”
-
const TfToken physxVehicleAutoGearBoxDownRatios#
“physxVehicleAutoGearBox:downRatios”
-
const TfToken physxVehicleAutoGearBoxLatency#
“physxVehicleAutoGearBox:latency”
-
const TfToken physxVehicleAutoGearBoxUpRatios#
“physxVehicleAutoGearBox:upRatios”
-
const TfToken physxVehicleBrakes#
“physxVehicleBrakes”
Property namespace prefix for the PhysxSchemaPhysxVehicleBrakesAPI schema.
-
const TfToken physxVehicleBrakes_MultipleApplyTemplate_MaxBrakeTorque#
“physxVehicleBrakes:__INSTANCE_NAME__:maxBrakeTorque”
-
const TfToken physxVehicleBrakes_MultipleApplyTemplate_TorqueMultipliers#
“physxVehicleBrakes:__INSTANCE_NAME__:torqueMultipliers”
-
const TfToken physxVehicleBrakes_MultipleApplyTemplate_Wheels#
“physxVehicleBrakes:__INSTANCE_NAME__:wheels”
-
const TfToken physxVehicleClutchStrength#
“physxVehicleClutch:strength”
-
const TfToken physxVehicleContextForwardAxis#
“physxVehicleContext:forwardAxis”
-
const TfToken physxVehicleContextLongitudinalAxis#
“physxVehicleContext:longitudinalAxis”
-
const TfToken physxVehicleContextUpAxis#
“physxVehicleContext:upAxis”
-
const TfToken physxVehicleContextUpdateMode#
“physxVehicleContext:updateMode”
-
const TfToken physxVehicleContextVerticalAxis#
“physxVehicleContext:verticalAxis”
-
const TfToken physxVehicleControllerAccelerator#
“physxVehicleController:accelerator”
-
const TfToken physxVehicleControllerBrake#
“physxVehicleController:brake”
-
const TfToken physxVehicleControllerBrake0#
“physxVehicleController:brake0”
-
const TfToken physxVehicleControllerBrake1#
“physxVehicleController:brake1”
-
const TfToken physxVehicleControllerHandbrake#
“physxVehicleController:handbrake”
-
const TfToken physxVehicleControllerSteer#
“physxVehicleController:steer”
-
const TfToken physxVehicleControllerSteerLeft#
“physxVehicleController:steerLeft”
-
const TfToken physxVehicleControllerSteerRight#
“physxVehicleController:steerRight”
-
const TfToken physxVehicleControllerTargetGear#
“physxVehicleController:targetGear”
-
const TfToken physxVehicleDrive#
“physxVehicle:drive”
-
const TfToken physxVehicleDriveBasicPeakTorque#
“physxVehicleDriveBasic:peakTorque”
-
const TfToken physxVehicleDriveStandardAutoGearBox#
“physxVehicleDriveStandard:autoGearBox”
-
const TfToken physxVehicleDriveStandardClutch#
“physxVehicleDriveStandard:clutch”
-
const TfToken physxVehicleDriveStandardEngine#
“physxVehicleDriveStandard:engine”
-
const TfToken physxVehicleDriveStandardGears#
“physxVehicleDriveStandard:gears”
-
const TfToken physxVehicleEngineDampingRateFullThrottle#
“physxVehicleEngine:dampingRateFullThrottle”
-
const TfToken physxVehicleEngineDampingRateZeroThrottleClutchDisengaged#
“physxVehicleEngine:dampingRateZeroThrottleClutchDisengaged”
-
const TfToken physxVehicleEngineDampingRateZeroThrottleClutchEngaged#
“physxVehicleEngine:dampingRateZeroThrottleClutchEngaged”
-
const TfToken physxVehicleEngineIdleRotationSpeed#
“physxVehicleEngine:idleRotationSpeed”
-
const TfToken physxVehicleEngineMaxRotationSpeed#
“physxVehicleEngine:maxRotationSpeed”
-
const TfToken physxVehicleEngineMoi#
“physxVehicleEngine:moi”
-
const TfToken physxVehicleEnginePeakTorque#
“physxVehicleEngine:peakTorque”
-
const TfToken physxVehicleEngineTorqueCurve#
“physxVehicleEngine:torqueCurve”
-
const TfToken physxVehicleGearsRatios#
“physxVehicleGears:ratios”
-
const TfToken physxVehicleGearsRatioScale#
“physxVehicleGears:ratioScale”
-
const TfToken physxVehicleGearsSwitchTime#
“physxVehicleGears:switchTime”
-
const TfToken physxVehicleHighForwardSpeedSubStepCount#
“physxVehicle:highForwardSpeedSubStepCount”
-
const TfToken physxVehicleLateralStickyTireDamping#
“physxVehicle:lateralStickyTireDamping”
-
const TfToken physxVehicleLateralStickyTireThresholdSpeed#
“physxVehicle:lateralStickyTireThresholdSpeed”
-
const TfToken physxVehicleLateralStickyTireThresholdTime#
“physxVehicle:lateralStickyTireThresholdTime”
-
const TfToken physxVehicleLimitSuspensionExpansionVelocity#
“physxVehicle:limitSuspensionExpansionVelocity”
-
const TfToken physxVehicleLongitudinalStickyTireDamping#
“physxVehicle:longitudinalStickyTireDamping”
-
const TfToken physxVehicleLongitudinalStickyTireThresholdSpeed#
“physxVehicle:longitudinalStickyTireThresholdSpeed”
-
const TfToken physxVehicleLongitudinalStickyTireThresholdTime#
“physxVehicle:longitudinalStickyTireThresholdTime”
-
const TfToken physxVehicleLowForwardSpeedSubStepCount#
“physxVehicle:lowForwardSpeedSubStepCount”
-
const TfToken physxVehicleMinActiveLongitudinalSlipDenominator#
“physxVehicle:minActiveLongitudinalSlipDenominator”
-
const TfToken physxVehicleMinLateralSlipDenominator#
“physxVehicle:minLateralSlipDenominator”
-
const TfToken physxVehicleMinLongitudinalSlipDenominator#
“physxVehicle:minLongitudinalSlipDenominator”
-
const TfToken physxVehicleMinPassiveLongitudinalSlipDenominator#
“physxVehicle:minPassiveLongitudinalSlipDenominator”
-
const TfToken physxVehicleMultiWheelDifferentialAverageWheelSpeedRatios#
“physxVehicleMultiWheelDifferential:averageWheelSpeedRatios”
-
const TfToken physxVehicleMultiWheelDifferentialTorqueRatios#
“physxVehicleMultiWheelDifferential:torqueRatios”
-
const TfToken physxVehicleMultiWheelDifferentialWheels#
“physxVehicleMultiWheelDifferential:wheels”
-
const TfToken physxVehicleNCR#
“physxVehicleNCR”
Property namespace prefix for the PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI schema.
-
const TfToken physxVehicleNCR_MultipleApplyTemplate_CommandValues#
“physxVehicleNCR:__INSTANCE_NAME__:commandValues”
-
const TfToken physxVehicleNCR_MultipleApplyTemplate_SpeedResponses#
“physxVehicleNCR:__INSTANCE_NAME__:speedResponses”
-
const TfToken physxVehicleNCR_MultipleApplyTemplate_SpeedResponsesPerCommandValue#
“physxVehicleNCR:__INSTANCE_NAME__:speedResponsesPerCommandValue”
-
const TfToken physxVehicleSteeringAngleMultipliers#
“physxVehicleSteering:angleMultipliers”
-
const TfToken physxVehicleSteeringMaxSteerAngle#
“physxVehicleSteering:maxSteerAngle”
-
const TfToken physxVehicleSteeringWheels#
“physxVehicleSteering:wheels”
-
const TfToken physxVehicleSubStepThresholdLongitudinalSpeed#
“physxVehicle:subStepThresholdLongitudinalSpeed”
-
const TfToken physxVehicleSuspensionCamberAtMaxCompression#
“physxVehicleSuspension:camberAtMaxCompression”
-
const TfToken physxVehicleSuspensionCamberAtMaxDroop#
“physxVehicleSuspension:camberAtMaxDroop”
-
const TfToken physxVehicleSuspensionCamberAtRest#
“physxVehicleSuspension:camberAtRest”
-
const TfToken physxVehicleSuspensionComplianceSuspensionForceAppPoint#
“physxVehicleSuspensionCompliance:suspensionForceAppPoint”
-
const TfToken physxVehicleSuspensionComplianceTireForceAppPoint#
“physxVehicleSuspensionCompliance:tireForceAppPoint”
-
const TfToken physxVehicleSuspensionComplianceWheelCamberAngle#
“physxVehicleSuspensionCompliance:wheelCamberAngle”
-
const TfToken physxVehicleSuspensionComplianceWheelToeAngle#
“physxVehicleSuspensionCompliance:wheelToeAngle”
-
const TfToken physxVehicleSuspensionLineQueryType#
“physxVehicle:suspensionLineQueryType”
-
const TfToken physxVehicleSuspensionMaxCompression#
“physxVehicleSuspension:maxCompression”
-
const TfToken physxVehicleSuspensionMaxDroop#
“physxVehicleSuspension:maxDroop”
-
const TfToken physxVehicleSuspensionSpringDamperRate#
“physxVehicleSuspension:springDamperRate”
-
const TfToken physxVehicleSuspensionSpringStrength#
“physxVehicleSuspension:springStrength”
-
const TfToken physxVehicleSuspensionSprungMass#
“physxVehicleSuspension:sprungMass”
-
const TfToken physxVehicleSuspensionTravelDistance#
“physxVehicleSuspension:travelDistance”
-
const TfToken physxVehicleTankControllerThrust0#
“physxVehicleTankController:thrust0”
-
const TfToken physxVehicleTankControllerThrust1#
“physxVehicleTankController:thrust1”
-
const TfToken physxVehicleTankDifferentialNumberOfWheelsPerTrack#
“physxVehicleTankDifferential:numberOfWheelsPerTrack”
-
const TfToken physxVehicleTankDifferentialThrustIndexPerTrack#
“physxVehicleTankDifferential:thrustIndexPerTrack”
-
const TfToken physxVehicleTankDifferentialTrackToWheelIndices#
“physxVehicleTankDifferential:trackToWheelIndices”
-
const TfToken physxVehicleTankDifferentialWheelIndicesInTrackOrder#
“physxVehicleTankDifferential:wheelIndicesInTrackOrder”
-
const TfToken physxVehicleTireCamberStiffness#
“physxVehicleTire:camberStiffness”
-
const TfToken physxVehicleTireCamberStiffnessPerUnitGravity#
“physxVehicleTire:camberStiffnessPerUnitGravity”
-
const TfToken physxVehicleTireFrictionTable#
“physxVehicleTire:frictionTable”
-
const TfToken physxVehicleTireFrictionVsSlipGraph#
“physxVehicleTire:frictionVsSlipGraph”
-
const TfToken physxVehicleTireLateralStiffnessGraph#
“physxVehicleTire:lateralStiffnessGraph”
-
const TfToken physxVehicleTireLatStiffX#
“physxVehicleTire:latStiffX”
-
const TfToken physxVehicleTireLatStiffY#
“physxVehicleTire:latStiffY”
-
const TfToken physxVehicleTireLongitudinalStiffness#
“physxVehicleTire:longitudinalStiffness”
-
const TfToken physxVehicleTireLongitudinalStiffnessPerUnitGravity#
“physxVehicleTire:longitudinalStiffnessPerUnitGravity”
-
const TfToken physxVehicleTireRestLoad#
“physxVehicleTire:restLoad”
-
const TfToken physxVehicleVehicleEnabled#
“physxVehicle:vehicleEnabled”
-
const TfToken physxVehicleWheelAttachmentCollisionGroup#
“physxVehicleWheelAttachment:collisionGroup”
-
const TfToken physxVehicleWheelAttachmentDriven#
“physxVehicleWheelAttachment:driven”
-
const TfToken physxVehicleWheelAttachmentIndex#
“physxVehicleWheelAttachment:index”
-
const TfToken physxVehicleWheelAttachmentSuspension#
“physxVehicleWheelAttachment:suspension”
-
const TfToken physxVehicleWheelAttachmentSuspensionForceAppPointOffset#
“physxVehicleWheelAttachment:suspensionForceAppPointOffset”
-
const TfToken physxVehicleWheelAttachmentSuspensionFrameOrientation#
“physxVehicleWheelAttachment:suspensionFrameOrientation”
-
const TfToken physxVehicleWheelAttachmentSuspensionFramePosition#
“physxVehicleWheelAttachment:suspensionFramePosition”
-
const TfToken physxVehicleWheelAttachmentSuspensionTravelDirection#
“physxVehicleWheelAttachment:suspensionTravelDirection”
-
const TfToken physxVehicleWheelAttachmentTire#
“physxVehicleWheelAttachment:tire”
-
const TfToken physxVehicleWheelAttachmentTireForceAppPointOffset#
“physxVehicleWheelAttachment:tireForceAppPointOffset”
-
const TfToken physxVehicleWheelAttachmentWheel#
“physxVehicleWheelAttachment:wheel”
-
const TfToken physxVehicleWheelAttachmentWheelCenterOfMassOffset#
“physxVehicleWheelAttachment:wheelCenterOfMassOffset”
-
const TfToken physxVehicleWheelAttachmentWheelFrameOrientation#
“physxVehicleWheelAttachment:wheelFrameOrientation”
-
const TfToken physxVehicleWheelAttachmentWheelFramePosition#
“physxVehicleWheelAttachment:wheelFramePosition”
-
const TfToken physxVehicleWheelControllerBrakeTorque#
“physxVehicleWheelController:brakeTorque”
-
const TfToken physxVehicleWheelControllerDriveTorque#
“physxVehicleWheelController:driveTorque”
-
const TfToken physxVehicleWheelControllerSteerAngle#
“physxVehicleWheelController:steerAngle”
-
const TfToken physxVehicleWheelDampingRate#
“physxVehicleWheel:dampingRate”
-
const TfToken physxVehicleWheelMass#
“physxVehicleWheel:mass”
-
const TfToken physxVehicleWheelMaxBrakeTorque#
“physxVehicleWheel:maxBrakeTorque”
-
const TfToken physxVehicleWheelMaxHandBrakeTorque#
“physxVehicleWheel:maxHandBrakeTorque”
-
const TfToken physxVehicleWheelMaxSteerAngle#
“physxVehicleWheel:maxSteerAngle”
-
const TfToken physxVehicleWheelMoi#
“physxVehicleWheel:moi”
-
const TfToken physxVehicleWheelRadius#
“physxVehicleWheel:radius”
-
const TfToken physxVehicleWheelToeAngle#
“physxVehicleWheel:toeAngle”
-
const TfToken physxVehicleWheelWidth#
“physxVehicleWheel:width”
-
const TfToken points0#
“points0”
-
const TfToken points1#
“points1”
-
const TfToken posX#
“posX”
Possible value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken posY#
“posY”
Possible value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken posZ#
“posZ”
Possible value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Possible value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken preventClimbing#
“preventClimbing”
Fallback value for PhysxSchemaPhysxCharacterControllerAPI::GetNonWalkableModeAttr()
-
const TfToken preventClimbingForceSliding#
“preventClimbingForceSliding”
Possible value for PhysxSchemaPhysxCharacterControllerAPI::GetNonWalkableModeAttr()
-
const TfToken quasistaticactors#
“quasistaticactors”
This token defines the PhysxSceneQuasistaticAPI collection that gathers the quasistatic actors.
-
const TfToken raycast#
“raycast”
Possible value for PhysxSchemaPhysxSphereFillCollisionAPI::GetFillModeAttr(), Fallback value for PhysxSchemaPhysxVehicleAPI::GetSuspensionLineQueryTypeAttr()
-
const TfToken referenceFrameIsCenterOfMass#
“physxVehicle:referenceFrameIsCenterOfMass”
This token represents a boolean custom metadata attribute that defines whether some vehicle wheel attachment properties are defined relative to the vehicle prim coordinate frame or relative to the vehicle center of mass coordinate frame. The affected properties are: suspensionTravelDirection, suspensionFramePosition, suspensionFrameOrientation, suspensionForceAppPointOffset, wheelCenterOfMassOffset and tireForceAppPointOffset. This custom metadata can be set on the prim that has PhysxVehicleAPI applied. Note that using the center of mass frame as reference (=True) is deprecated and will not be supported for much longer.
-
const TfToken restOffset#
“restOffset”
-
const TfToken rotX#
“rotX”
Possible value for PhysxSchemaPhysxTendonAxisAPI::GetJointAxisAttr(), Fallback value for PhysxSchemaPhysxMimicJointAPI::GetReferenceJointAxisAttr()
-
const TfToken rotY#
“rotY”
Possible value for PhysxSchemaPhysxTendonAxisAPI::GetJointAxisAttr(), Possible value for PhysxSchemaPhysxMimicJointAPI::GetReferenceJointAxisAttr()
-
const TfToken rotZ#
“rotZ”
Possible value for PhysxSchemaPhysxTendonAxisAPI::GetJointAxisAttr(), Possible value for PhysxSchemaPhysxMimicJointAPI::GetReferenceJointAxisAttr()
-
const TfToken SAP#
“SAP”
Possible value for PhysxSchemaPhysxSceneAPI::GetBroadphaseTypeAttr()
-
const TfToken SAT#
“SAT”
Possible value for PhysxSchemaPhysxSceneAPI::GetCollisionSystemAttr()
-
const TfToken scriptFile#
“scriptFile”
Fallback value for PhysxSchemaPhysxTriggerAPI::GetEnterScriptTypeAttr(), Fallback value for PhysxSchemaPhysxTriggerAPI::GetLeaveScriptTypeAttr()
-
const TfToken sdf#
“sdf”
This token represents the SDF triangle mesh approximation.
-
const TfToken simulationOwner#
“simulationOwner”
-
const TfToken solidRestOffset#
“solidRestOffset”
-
const TfToken solverPositionIterationCount#
“solverPositionIterationCount”
-
const TfToken sphereFill#
“sphereFill”
This token represents sphere fill approximation.
-
const TfToken state#
“state”
Property namespace prefix for the PhysxSchemaJointStateAPI schema.
-
const TfToken state_MultipleApplyTemplate_PhysicsPosition#
“state:__INSTANCE_NAME__:physics:position”
-
const TfToken state_MultipleApplyTemplate_PhysicsVelocity#
“state:__INSTANCE_NAME__:physics:velocity”
-
const TfToken steer#
“steer”
This token holds the instance name to use for PhysxVehicleNonlinearCommandResponseAPI when applying it to the steering system.
-
const TfToken surface#
“surface”
Possible value for PhysxSchemaPhysxSphereFillCollisionAPI::GetFillModeAttr()
-
const TfToken sweep#
“sweep”
Possible value for PhysxSchemaPhysxVehicleAPI::GetSuspensionLineQueryTypeAttr()
-
const TfToken Synchronous#
“Synchronous”
Fallback value for PhysxSchemaPhysxSceneAPI::GetUpdateTypeAttr()
-
const TfToken TGS#
“TGS”
Fallback value for PhysxSchemaPhysxSceneAPI::GetSolverTypeAttr()
-
const TfToken transX#
“transX”
Possible value for PhysxSchemaPhysxTendonAxisAPI::GetJointAxisAttr()
-
const TfToken transY#
“transY”
Possible value for PhysxSchemaPhysxTendonAxisAPI::GetJointAxisAttr()
-
const TfToken transZ#
“transZ”
Possible value for PhysxSchemaPhysxTendonAxisAPI::GetJointAxisAttr()
-
const TfToken triangleMesh#
“triangleMesh”
This token represents the collection name to use with PhysxCookedDataAPI to represent cooked data of a TriangleMesh.
-
const TfToken undefined#
“undefined”
Fallback value for PhysxSchemaPhysxVehicleContextAPI::GetLongitudinalAxisAttr(), Fallback value for PhysxSchemaPhysxVehicleContextAPI::GetVerticalAxisAttr()
-
const TfToken velocityChange#
“velocityChange”
Fallback value for PhysxSchemaPhysxVehicleContextAPI::GetUpdateModeAttr()
-
const TfToken Vertices#
“Vertices”
Possible value for PhysxSchemaPhysxPhysicsAttachment::GetFilterType0Attr(), Possible value for PhysxSchemaPhysxPhysicsAttachment::GetFilterType1Attr()
-
const TfToken wind#
“wind”
-
const TfToken X#
“X”
Possible value for PhysxSchemaPhysxCharacterControllerAPI::GetUpAxisAttr()
-
const TfToken Y#
“Y”
Possible value for PhysxSchemaPhysxCharacterControllerAPI::GetUpAxisAttr()
-
const TfToken Z#
“Z”
Fallback value for PhysxSchemaPhysxCharacterControllerAPI::GetUpAxisAttr()
-
const TfToken PhysicsJointStateAPI#
“PhysicsJointStateAPI”
Schema identifer and family for PhysxSchemaJointStateAPI
-
const TfToken PhysxArticulationAPI#
“PhysxArticulationAPI”
Schema identifer and family for PhysxSchemaPhysxArticulationAPI
-
const TfToken PhysxAutoAttachmentAPI#
“PhysxAutoAttachmentAPI”
Schema identifer and family for PhysxSchemaPhysxAutoAttachmentAPI
-
const TfToken PhysxAutoParticleClothAPI#
“PhysxAutoParticleClothAPI”
Schema identifer and family for PhysxSchemaPhysxAutoParticleClothAPI
-
const TfToken PhysxCameraAPI#
“PhysxCameraAPI”
Schema identifer and family for PhysxSchemaPhysxCameraAPI
-
const TfToken PhysxCameraDroneAPI#
“PhysxCameraDroneAPI”
Schema identifer and family for PhysxSchemaPhysxCameraDroneAPI
-
const TfToken PhysxCameraFollowAPI#
“PhysxCameraFollowAPI”
Schema identifer and family for PhysxSchemaPhysxCameraFollowAPI
-
const TfToken PhysxCameraFollowLookAPI#
“PhysxCameraFollowLookAPI”
Schema identifer and family for PhysxSchemaPhysxCameraFollowLookAPI
-
const TfToken PhysxCameraFollowVelocityAPI#
“PhysxCameraFollowVelocityAPI”
Schema identifer and family for PhysxSchemaPhysxCameraFollowVelocityAPI
-
const TfToken PhysxCharacterControllerAPI#
“PhysxCharacterControllerAPI”
Schema identifer and family for PhysxSchemaPhysxCharacterControllerAPI
-
const TfToken PhysxCollisionAPI#
“PhysxCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxCollisionAPI
-
const TfToken PhysxContactReportAPI#
“PhysxContactReportAPI”
Schema identifer and family for PhysxSchemaPhysxContactReportAPI
-
const TfToken PhysxConvexDecompositionCollisionAPI#
“PhysxConvexDecompositionCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxConvexDecompositionCollisionAPI
-
const TfToken PhysxConvexHullCollisionAPI#
“PhysxConvexHullCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxConvexHullCollisionAPI
-
const TfToken PhysxCookedDataAPI#
“PhysxCookedDataAPI”
Schema identifer and family for PhysxSchemaPhysxCookedDataAPI
-
const TfToken PhysxDeformableAPI#
“PhysxDeformableAPI”
Schema identifer and family for PhysxSchemaPhysxDeformableAPI
-
const TfToken PhysxDeformableBodyAPI#
“PhysxDeformableBodyAPI”
Schema identifer and family for PhysxSchemaPhysxDeformableBodyAPI
-
const TfToken PhysxDeformableBodyMaterialAPI#
“PhysxDeformableBodyMaterialAPI”
Schema identifer and family for PhysxSchemaPhysxDeformableBodyMaterialAPI
-
const TfToken PhysxDeformableSurfaceAPI#
“PhysxDeformableSurfaceAPI”
Schema identifer and family for PhysxSchemaPhysxDeformableSurfaceAPI
-
const TfToken PhysxDeformableSurfaceMaterialAPI#
“PhysxDeformableSurfaceMaterialAPI”
Schema identifer and family for PhysxSchemaPhysxDeformableSurfaceMaterialAPI
-
const TfToken PhysxDiffuseParticlesAPI#
“PhysxDiffuseParticlesAPI”
Schema identifer and family for PhysxSchemaPhysxDiffuseParticlesAPI
-
const TfToken PhysxForceAPI#
“PhysxForceAPI”
Schema identifer and family for PhysxSchemaPhysxForceAPI
-
const TfToken PhysxJointAPI#
“PhysxJointAPI”
Schema identifer and family for PhysxSchemaPhysxJointAPI
-
const TfToken PhysxLimitAPI#
“PhysxLimitAPI”
Schema identifer and family for PhysxSchemaPhysxLimitAPI
-
const TfToken PhysxMaterialAPI#
“PhysxMaterialAPI”
Schema identifer and family for PhysxSchemaPhysxMaterialAPI
-
const TfToken PhysxMeshMergeCollisionAPI#
“PhysxMeshMergeCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxMeshMergeCollisionAPI
-
const TfToken PhysxMimicJointAPI#
“PhysxMimicJointAPI”
Schema identifer and family for PhysxSchemaPhysxMimicJointAPI
-
const TfToken PhysxParticleAnisotropyAPI#
“PhysxParticleAnisotropyAPI”
Schema identifer and family for PhysxSchemaPhysxParticleAnisotropyAPI
-
const TfToken PhysxParticleAPI#
“PhysxParticleAPI”
Schema identifer and family for PhysxSchemaPhysxParticleAPI
-
const TfToken PhysxParticleClothAPI#
“PhysxParticleClothAPI”
Schema identifer and family for PhysxSchemaPhysxParticleClothAPI
-
const TfToken PhysxParticleIsosurfaceAPI#
“PhysxParticleIsosurfaceAPI”
Schema identifer and family for PhysxSchemaPhysxParticleIsosurfaceAPI
-
const TfToken PhysxParticleSamplingAPI#
“PhysxParticleSamplingAPI”
Schema identifer and family for PhysxSchemaPhysxParticleSamplingAPI
-
const TfToken PhysxParticleSetAPI#
“PhysxParticleSetAPI”
Schema identifer and family for PhysxSchemaPhysxParticleSetAPI
-
const TfToken PhysxParticleSmoothingAPI#
“PhysxParticleSmoothingAPI”
Schema identifer and family for PhysxSchemaPhysxParticleSmoothingAPI
-
const TfToken PhysxParticleSystem#
“PhysxParticleSystem”
Schema identifer and family for PhysxSchemaPhysxParticleSystem
-
const TfToken PhysxPBDMaterialAPI#
“PhysxPBDMaterialAPI”
Schema identifer and family for PhysxSchemaPhysxPBDMaterialAPI
-
const TfToken PhysxPhysicsAttachment#
“PhysxPhysicsAttachment”
Schema identifer and family for PhysxSchemaPhysxPhysicsAttachment
-
const TfToken PhysxPhysicsDistanceJointAPI#
“PhysxPhysicsDistanceJointAPI”
Schema identifer and family for PhysxSchemaPhysxPhysicsDistanceJointAPI
-
const TfToken PhysxPhysicsGearJoint#
“PhysxPhysicsGearJoint”
Schema identifer and family for PhysxSchemaPhysxPhysicsGearJoint
-
const TfToken PhysxPhysicsInstancer#
“PhysxPhysicsInstancer”
Schema identifer and family for PhysxSchemaPhysxPhysicsInstancer
-
const TfToken PhysxPhysicsJointInstancer#
“PhysxPhysicsJointInstancer”
Schema identifer and family for PhysxSchemaPhysxPhysicsJointInstancer
-
const TfToken PhysxPhysicsRackAndPinionJoint#
“PhysxPhysicsRackAndPinionJoint”
Schema identifer and family for PhysxSchemaPhysxPhysicsRackAndPinionJoint
-
const TfToken PhysxResidualReportingAPI#
“PhysxResidualReportingAPI”
Schema identifer and family for PhysxSchemaPhysxResidualReportingAPI
-
const TfToken PhysxRigidBodyAPI#
“PhysxRigidBodyAPI”
Schema identifer and family for PhysxSchemaPhysxRigidBodyAPI
-
const TfToken PhysxSceneAPI#
“PhysxSceneAPI”
Schema identifer and family for PhysxSchemaPhysxSceneAPI
-
const TfToken PhysxSceneQuasistaticAPI#
“PhysxSceneQuasistaticAPI”
Schema identifer and family for PhysxSchemaPhysxSceneQuasistaticAPI
-
const TfToken PhysxSDFMeshCollisionAPI#
“PhysxSDFMeshCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxSDFMeshCollisionAPI
-
const TfToken PhysxSphereFillCollisionAPI#
“PhysxSphereFillCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxSphereFillCollisionAPI
-
const TfToken PhysxSurfaceVelocityAPI#
“PhysxSurfaceVelocityAPI”
Schema identifer and family for PhysxSchemaPhysxSurfaceVelocityAPI
-
const TfToken PhysxTendonAttachmentAPI#
“PhysxTendonAttachmentAPI”
Schema identifer and family for PhysxSchemaPhysxTendonAttachmentAPI
-
const TfToken PhysxTendonAttachmentLeafAPI#
“PhysxTendonAttachmentLeafAPI”
Schema identifer and family for PhysxSchemaPhysxTendonAttachmentLeafAPI
-
const TfToken PhysxTendonAttachmentRootAPI#
“PhysxTendonAttachmentRootAPI”
Schema identifer and family for PhysxSchemaPhysxTendonAttachmentRootAPI
-
const TfToken PhysxTendonAxisAPI#
“PhysxTendonAxisAPI”
Schema identifer and family for PhysxSchemaPhysxTendonAxisAPI
-
const TfToken PhysxTendonAxisRootAPI#
“PhysxTendonAxisRootAPI”
Schema identifer and family for PhysxSchemaPhysxTendonAxisRootAPI
-
const TfToken PhysxTriangleMeshCollisionAPI#
“PhysxTriangleMeshCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxTriangleMeshCollisionAPI
-
const TfToken PhysxTriangleMeshSimplificationCollisionAPI#
“PhysxTriangleMeshSimplificationCollisionAPI”
Schema identifer and family for PhysxSchemaPhysxTriangleMeshSimplificationCollisionAPI
-
const TfToken PhysxTriggerAPI#
“PhysxTriggerAPI”
Schema identifer and family for PhysxSchemaPhysxTriggerAPI
-
const TfToken PhysxTriggerStateAPI#
“PhysxTriggerStateAPI”
Schema identifer and family for PhysxSchemaPhysxTriggerStateAPI
-
const TfToken PhysxVehicleAckermannSteeringAPI#
“PhysxVehicleAckermannSteeringAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleAckermannSteeringAPI
-
const TfToken PhysxVehicleAPI#
“PhysxVehicleAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleAPI
-
const TfToken PhysxVehicleAutoGearBoxAPI#
“PhysxVehicleAutoGearBoxAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleAutoGearBoxAPI
-
const TfToken PhysxVehicleBrakesAPI#
“PhysxVehicleBrakesAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleBrakesAPI
-
const TfToken PhysxVehicleClutchAPI#
“PhysxVehicleClutchAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleClutchAPI
-
const TfToken PhysxVehicleContextAPI#
“PhysxVehicleContextAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleContextAPI
-
const TfToken PhysxVehicleControllerAPI#
“PhysxVehicleControllerAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleControllerAPI
-
const TfToken PhysxVehicleDriveBasicAPI#
“PhysxVehicleDriveBasicAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleDriveBasicAPI
-
const TfToken PhysxVehicleDriveStandardAPI#
“PhysxVehicleDriveStandardAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleDriveStandardAPI
-
const TfToken PhysxVehicleEngineAPI#
“PhysxVehicleEngineAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleEngineAPI
-
const TfToken PhysxVehicleGearsAPI#
“PhysxVehicleGearsAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleGearsAPI
-
const TfToken PhysxVehicleMultiWheelDifferentialAPI#
“PhysxVehicleMultiWheelDifferentialAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleMultiWheelDifferentialAPI
-
const TfToken PhysxVehicleNonlinearCommandResponseAPI#
“PhysxVehicleNonlinearCommandResponseAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleNonlinearCommandResponseAPI
-
const TfToken PhysxVehicleSteeringAPI#
“PhysxVehicleSteeringAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleSteeringAPI
-
const TfToken PhysxVehicleSuspensionAPI#
“PhysxVehicleSuspensionAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleSuspensionAPI
-
const TfToken PhysxVehicleSuspensionComplianceAPI#
“PhysxVehicleSuspensionComplianceAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleSuspensionComplianceAPI
-
const TfToken PhysxVehicleTankControllerAPI#
“PhysxVehicleTankControllerAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleTankControllerAPI
-
const TfToken PhysxVehicleTankDifferentialAPI#
“PhysxVehicleTankDifferentialAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleTankDifferentialAPI
-
const TfToken PhysxVehicleTireAPI#
“PhysxVehicleTireAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleTireAPI
-
const TfToken PhysxVehicleTireFrictionTable#
“PhysxVehicleTireFrictionTable”
Schema identifer and family for PhysxSchemaPhysxVehicleTireFrictionTable
-
const TfToken PhysxVehicleWheelAPI#
“PhysxVehicleWheelAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleWheelAPI
-
const TfToken PhysxVehicleWheelAttachmentAPI#
“PhysxVehicleWheelAttachmentAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleWheelAttachmentAPI
-
const TfToken PhysxVehicleWheelControllerAPI#
“PhysxVehicleWheelControllerAPI”
Schema identifer and family for PhysxSchemaPhysxVehicleWheelControllerAPI
-
const TfToken TetrahedralMesh#
“TetrahedralMesh”
Schema identifer and family for PhysxSchemaTetrahedralMesh
-
const std::vector<TfToken> allTokens#
A vector of all of the tokens listed above.
-
const TfToken acceleration#