Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Reviewed] [Boids Movement] Fix typo of VelocityX and VelocityY being swapped #1272

Merged
merged 3 commits into from
May 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions extensions/reviewed/BoidsMovement.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "BoidsMovement",
"previewIconUrl": "https://resources.gdevelop-app.com/assets/Icons/Glyphster Pack/Master/SVG/Restaurant/Restaurant_restaurant_seafood_animal_fish.svg",
"shortDescription": "Simulates flocks movement.",
"version": "0.2.1",
"version": "0.2.2",
"description": [
"Simulates swarms or flocks movement following the separation, alignment, cohesion principles. The flock can be attracted to a location or avoid some obstacles.",
"",
Expand Down Expand Up @@ -1266,8 +1266,8 @@
"objectGroups": []
},
{
"description": "Return the current vertical speed.",
"fullName": "Velocity Y",
"description": "Return the current horizontal speed.",
"fullName": "Velocity X",
"functionType": "Expression",
"name": "VelocityX",
"sentence": "",
Expand Down Expand Up @@ -1308,8 +1308,8 @@
"objectGroups": []
},
{
"description": "Return the current horizontal speed.",
"fullName": "Velocity X",
"description": "Return the current vertical speed.",
"fullName": "Velocity Y",
"functionType": "Expression",
"name": "VelocityY",
"sentence": "",
Expand Down
Loading