Skip to content

Commit

Permalink
docs: Update Body class documentation
Browse files Browse the repository at this point in the history
Removed `@internal` tags from getType and setType definitions.
  • Loading branch information
hbaklan943 authored Aug 20, 2023
1 parent 4fb1d4b commit cb598ea
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/dynamics/Body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,16 +384,10 @@ export class Body {
return this;
}

/**
* @internal
*/
getType(): BodyType {
return this.m_type;
}

/**
* @internal
*/
setType(type: BodyType): void {
_ASSERT && console.assert(type === STATIC || type === KINEMATIC || type === DYNAMIC);
_ASSERT && console.assert(this.isWorldLocked() == false);
Expand Down

0 comments on commit cb598ea

Please sign in to comment.