Skip to content

Commit 4a9ec59

Browse files
authored
update to 2409 version (#72)
* adjust to changed BoundsBus API * update compatible_engines * bump Gem version * minor adjustments in Gem description Signed-off-by: Mateusz Żak <[email protected]>
1 parent 86a154a commit 4a9ec59

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Gems/Pointcloud/Code/Source/Tools/Components/PointcloudEditorComponent.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace Pointcloud
6161
AzFramework::BoundsRequestBus::Handler::BusDisconnect();
6262
}
6363

64-
AZ::Aabb PointcloudEditorComponent::GetWorldBounds()
64+
AZ::Aabb PointcloudEditorComponent::GetWorldBounds() const
6565
{
6666
AZ::Transform transform = AZ::Transform::CreateIdentity();
6767
AZ::TransformBus::EventResult(transform, GetEntityId(), &AZ::TransformBus::Events::GetWorldTM);
@@ -73,7 +73,7 @@ namespace Pointcloud
7373
return bounds;
7474
}
7575

76-
AZ::Aabb PointcloudEditorComponent::GetLocalBounds()
76+
AZ::Aabb PointcloudEditorComponent::GetLocalBounds() const
7777
{
7878
AZ::Transform transform = AZ::Transform::CreateIdentity();
7979
AZ::TransformBus::EventResult(transform, GetEntityId(), &AZ::TransformBus::Events::GetLocalTM);

Gems/Pointcloud/Code/Source/Tools/Components/PointcloudEditorComponent.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ namespace Pointcloud
4242
void Deactivate() override;
4343

4444
// AzFramework::BoundsRequestBus overrides ...
45-
AZ::Aabb GetWorldBounds() override;
46-
AZ::Aabb GetLocalBounds() override;
45+
AZ::Aabb GetWorldBounds() const override;
46+
AZ::Aabb GetLocalBounds() const override;
4747

4848
// AzToolsFramework::EditorComponentSelectionRequestsBus overrides ...
4949
AZ::Aabb GetEditorSelectionBoundsViewport(const AzFramework::ViewportInfo& viewportInfo) override;

Gems/Pointcloud/gem.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"gem_name": "Pointcloud",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"display_name": "Pointcloud",
5-
"license": "License used i.e. Apache-2.0 or MIT",
6-
"license_url": "Link to the license web site i.e. https://opensource.org/licenses/Apache-2.0",
7-
"origin": "The name of the originator or creator",
8-
"origin_url": "The website for this Gem",
5+
"license": "Apache-2.0",
6+
"license_url": "https://opensource.org/licenses/Apache-2.0",
7+
"origin": "Robotec.AI",
8+
"origin_url": "https://www.robotec.ai",
99
"type": "Code",
10-
"summary": "A short description of this Gem",
10+
"summary": "Tool Gem to visualize point clouds",
1111
"canonical_tags": [
1212
"Gem"
1313
],
@@ -24,8 +24,8 @@
2424
"Atom_RPI",
2525
"Atom"
2626
],
27-
"repo_uri": "",
28-
"compatible_engines": [],
27+
"repo_uri": "https://github.com/RobotecAI/robotec-o3de-tools",
28+
"compatible_engines": ["o3de>=2.3.0"],
2929
"engine_api_dependencies": [],
3030
"restricted": "Pointcloud"
3131
}

0 commit comments

Comments
 (0)