Skip to content

Commit

Permalink
feat: add noteice
Browse files Browse the repository at this point in the history
  • Loading branch information
luzhuang committed Jul 26, 2024
1 parent 3ed4605 commit f4f8e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/physics-physx/src/PhysXCharacterController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class PhysXCharacterController implements ICharacterController {
* {@inheritDoc ICharacterController.addShape }
*/
addShape(shape: PhysXColliderShape): void {
// When CharacterController is disabled, set shape property need check pxController whether exist because of this._pxManager is null and won't create pxController.
// When CharacterController is disabled, set shape property need check pxController whether exist because of this._pxManager is null and won't create pxController
this._pxManager && this._createPXController(this._pxManager, shape);
this._shape = shape;
shape._controllers.add(this);
Expand Down

0 comments on commit f4f8e02

Please sign in to comment.