Skip to content

Commit

Permalink
Fix a few typo in Physics3D (#7332)
Browse files Browse the repository at this point in the history
- Don't show in changelog
  • Loading branch information
D8H authored Jan 22, 2025
1 parent d08bf97 commit a14f1a1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Extensions/Physics3DBehavior/JsExtension.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
extension
.setExtensionInformation(
'Physics3D',
_('3D Physics Engine'),
_('3D physics engine'),
"The physics engine simulates realistic object physics, with gravity, forces, joints, etc. It's perfect for games that need to have realistic behaving objects and a gameplay centered around it.",
'Florian Rival',
'MIT'
Expand All @@ -29,7 +29,7 @@ module.exports = {
.setCategory('Movement')
.setTags('physics, gravity, obstacle, collision');
extension
.addInstructionOrExpressionGroupMetadata(_('3D Physics Engine'))
.addInstructionOrExpressionGroupMetadata(_('3D physics engine'))
.setIcon('JsPlatform/Extensions/physics3d.svg');
{
const behavior = new gd.BehaviorJsImplementation();
Expand Down Expand Up @@ -998,8 +998,8 @@ module.exports = {
'number',
'AngularVelocityX',
_('Angular velocity X'),
_('the object angular velocity on X.'),
_('the angular velocity on X'),
_('the object angular velocity around X.'),
_('the angular velocity around X'),
_('Velocity'),
'JsPlatform/Extensions/physics3d.svg'
)
Expand All @@ -1019,8 +1019,8 @@ module.exports = {
'number',
'AngularVelocityY',
_('Angular velocity Y'),
_('the object angular velocity on Y.'),
_('the angular velocity on Y'),
_('the object angular velocity around Y.'),
_('the angular velocity around Y'),
_('Velocity'),
'JsPlatform/Extensions/physics3d.svg'
)
Expand All @@ -1040,8 +1040,8 @@ module.exports = {
'number',
'AngularVelocityZ',
_('Angular velocity Z'),
_('the object angular velocity on Z.'),
_('the angular velocity on Z'),
_('the object angular velocity around Z.'),
_('the angular velocity around Z'),
_('Velocity'),
'JsPlatform/Extensions/physics3d.svg'
)
Expand Down

0 comments on commit a14f1a1

Please sign in to comment.