Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ namespace ImGuiProvider
{
current = current->GetChildPtr(level.String()); // Move to the child node
}
parentNodes.push_back(AZStd::make_pair(current, level));
parentNodes.emplace_back(AZStd::make_pair(current, level));
Comment thread
norbertprokopiuk marked this conversation as resolved.
Outdated
}
return parentNodes;
}
Expand Down
2 changes: 1 addition & 1 deletion Gems/ImGuiProvider/gem.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"gem_name": "ImGuiProvider",
"version": "2.0.0",
"version": "3.0.0",
"display_name": "ImGuiProvider",
"license": "Apache-2.0",
"license_url": "https://opensource.org/licenses/Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Note that this is not a "Canonical" part of O3DE - those gems are third-party co
| ----------------------------------------------------------- | ------------- |
| [**CsvSpawner**](#csvspawner) | not verified |
| [**ExposeConsoleToRos**](#exposeconsoletoRos) | not verified |
| [**ImGuiProvider**](#imguiprovider) | not verified |
| [**ImGuiProvider**](#imguiprovider) | compatible |

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

technically it isn't a new Gem 🙃

| [**ImGuizmo**](#imguizmo) | not verified |
| [**LevelModificationTools**](#levelmodificationtools) | not verified |
| [**Pointcloud**](#pointcloud) | compatible |
Expand Down
Loading