Updated help search and all docs.o3de.org links to o3de.org (#1594)
This commit is contained in:
@@ -181,7 +181,7 @@ namespace AZ
|
||||
//! @code{.cpp}
|
||||
//! editContext->Class<ScriptEditorComponent>("Lua Script", "The Lua Script component allows you to add arbitrary Lua logic to an entity in the form of a Lua script")
|
||||
//! ->ClassElement(AZ::Edit::ClassElements::EditorData, "")
|
||||
//! ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/lua-script/")
|
||||
//! ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/lua-script/")
|
||||
//! @endcode
|
||||
const static AZ::Crc32 HelpPageURL = AZ_CRC("HelpPageURL", 0xa344d681);
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace AzNetworking
|
||||
//! @brief Packet data compressor interface.
|
||||
//!
|
||||
//! ICompressor is an abstract compression interface meant for user provided GEMs to implement (such as the [Multiplayer
|
||||
//! Compression Gem](http://docs.o3de.org/docs/user-guide/gems/reference/multiplayer-compression)).
|
||||
//! Compression Gem](http://o3de.org/docs/user-guide/gems/reference/multiplayer-compression)).
|
||||
//! Compression is supported for both TCP and UDP connections. Instantiation of a compressor is controlled by the
|
||||
//! `net_UdpCompressor` or `net_TcpCompressor` cvar for their respective protocols.
|
||||
|
||||
@@ -94,7 +94,7 @@ namespace AzNetworking
|
||||
//! ICompressorFactory is an abstract compression interface meant for user provided GEMs to implement. ICompressorFactory
|
||||
//! implementations can be registered to classes implementing INetworking. Registered factories can then be used to create
|
||||
//! ICompressor implementations on demand. The [Multiplayer Compression
|
||||
//! Gem](http://docs.o3de.org/docs/user-guide/gems/reference/multiplayer-compression) is an example of an ICompressorFactory
|
||||
//! Gem](http://o3de.org/docs/user-guide/gems/reference/multiplayer-compression) is an example of an ICompressorFactory
|
||||
//! for an LZ4 Compressor. In it, MultiplayerCompressionSystemComponent registers its ICompressorFactory with
|
||||
//! NetworkingSystemComponent, which is an implementation of INetworking. Registered factories are keyed by their AZ Name
|
||||
//! which is accessed through the factory's GetFactoryName method.
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace AzNetworking
|
||||
//!
|
||||
//! INetworking is also responsible for registering ICompressorFactory implementations. This allows a developer to have
|
||||
//! access to multiple ICompressorFactory implementations by name. The [MultiplayerCompressor
|
||||
//! Gem](http://docs.o3de.org/docs/user-guide/gems/reference/multiplayer-compression) is an example of this using the
|
||||
//! Gem](http://o3de.org/docs/user-guide/gems/reference/multiplayer-compression) is an example of this using the
|
||||
//! [LZ4](https://wikipedia.org/wiki/LZ4_%28compression_algorithm%29) algorithm.
|
||||
//!
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ namespace AzNetworking
|
||||
//! ISerializer to move data between hosts safely and efficiently.
|
||||
//!
|
||||
//! For more information on the packet format and best practices for extending the packet system, read
|
||||
//! [Networking Packets](http://docs.o3de.org/docs/user-guide/networking/packets) on the O3DE documentation site.
|
||||
//! [Networking Packets](http://o3de.org/docs/user-guide/networking/packets) on the O3DE documentation site.
|
||||
class IPacket
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace AzNetworking
|
||||
//! * Header - Details the type of packet and other information related to reliability
|
||||
//! * Payload - The actual serialized content of the packet
|
||||
//!
|
||||
//! For more information, read [Networking Packets](http://docs.o3de.org/docs/user-guide/networking/packets) in the O3DE documentation.
|
||||
//! For more information, read [Networking Packets](http://o3de.org/docs/user-guide/networking/packets) in the O3DE documentation.
|
||||
//!
|
||||
//! ## Reliability
|
||||
//!
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace AzNetworking
|
||||
//! * Header - Details the type of packet and other information related to reliability
|
||||
//! * Payload - The actual serialized content of the packet
|
||||
//!
|
||||
//! For more information, read [Networking Packets](http://docs.o3de.org/docs/user-guide/networking/packets) in the O3DE documentation.
|
||||
//! For more information, read [Networking Packets](http://o3de.org/docs/user-guide/networking/packets) in the O3DE documentation.
|
||||
//!
|
||||
//! ### Reliability
|
||||
//!
|
||||
@@ -72,7 +72,7 @@ namespace AzNetworking
|
||||
//! ### Encryption
|
||||
//!
|
||||
//! AzNetworking uses the [OpenSSL](https://www.openssl.org/) library to implement Datagram Layer Transport Security (DTLS) encryption
|
||||
//! on UDP traffic. Encryption operates as described in [O3DE Networking Encryption](http://docs.o3de.org/docs/user-guide/networking/encryption)
|
||||
//! on UDP traffic. Encryption operates as described in [O3DE Networking Encryption](http://o3de.org/docs/user-guide/networking/encryption)
|
||||
//! on the documentation website. Once both endpoints have completed their handshake, all traffic is expected to be fully encrypted.
|
||||
class UdpNetworkInterface final
|
||||
: public INetworkInterface
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
* API refernce for all tools developers that are extending Open 3D Engine. The API reference
|
||||
* is intended for C++ programmers building tools. For UX designers looking to understand
|
||||
* the best patterns and practices when making a tool to comfortably integrate with
|
||||
* the Open 3D Engine editor, see the [UI 2.0 design guide](https://docs.o3de.org/docs/tools-ui/ui-dev-intro/).
|
||||
* the Open 3D Engine editor, see the [UI 2.0 design guide](https://o3de.org/docs/tools-ui/ui-dev-intro/).
|
||||
*/
|
||||
#include <AzCore/PlatformDef.h>
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ AzQtComponents::CardHeader* header = ui->functionalCard->header();
|
||||
header->setIcon(QIcon(":/Cards/img/UI20/Cards/slice_item.png"));
|
||||
|
||||
// Set the help url to open in a browser if the user clicks the help button
|
||||
header->setHelpURL("https://docs.o3de.org/docs/");
|
||||
header->setHelpURL("https://o3de.org/docs/");
|
||||
|
||||
// Clear the help url
|
||||
header->clearHelpURL();
|
||||
@@ -103,7 +103,7 @@ card->mockDisabledState(true);
|
||||
ui->disabledCard->setTitle("Actually Disabled Card");
|
||||
ui->disabledCard->setContentWidget(new QWidget());
|
||||
ui->disabledCard->header()->setIcon(QIcon(QStringLiteral(":/stylesheet/img/search.svg")));
|
||||
ui->disabledCard->header()->setHelpURL("https://docs.o3de.org/docs/");
|
||||
ui->disabledCard->header()->setHelpURL("https://o3de.org/docs/");
|
||||
ui->disabledCard->setSecondaryTitle("Secondary Title");
|
||||
ui->disabledCard->setSecondaryContentWidget(new QWidget());
|
||||
ui->disabledCard->setEnabled(false);
|
||||
@@ -111,7 +111,7 @@ card->mockDisabledState(true);
|
||||
ui->disabledCard2->setTitle("Mock Disabled Card");
|
||||
ui->disabledCard2->setContentWidget(new QWidget());
|
||||
ui->disabledCard2->header()->setIcon(QIcon(QStringLiteral(":/stylesheet/img/search.svg")));
|
||||
ui->disabledCard2->header()->setHelpURL("https://docs.o3de.org/docs/");
|
||||
ui->disabledCard2->header()->setHelpURL("https://o3de.org/docs/");
|
||||
ui->disabledCard2->setSecondaryTitle("Secondary Title");
|
||||
ui->disabledCard2->setSecondaryContentWidget(new QWidget());
|
||||
ui->disabledCard2->mockDisabledState(true);
|
||||
@@ -122,7 +122,7 @@ card->mockDisabledState(true);
|
||||
// put in an example icon
|
||||
AzQtComponents::CardHeader* header = ui->functionalCard->header();
|
||||
header->setIcon(QIcon(":/Cards/img/UI20/Cards/slice_item.png"));
|
||||
header->setHelpURL("https://docs.o3de.org/docs/");
|
||||
header->setHelpURL("https://o3de.org/docs/");
|
||||
|
||||
connect(ui->addButton, &QPushButton::clicked, this, &CardPage::addNotification);
|
||||
|
||||
|
||||
+1
-1
@@ -316,7 +316,7 @@ See the documentation linked above for more details.
|
||||
)";
|
||||
|
||||
ui->exampleText->setHtml(exampleText);
|
||||
ui->hyperlinkLabel->setText(QStringLiteral(R"(<a href="https://docs.o3de.org/docs/user-guide/components/development/reflection/">Reflected Property Editor docs</a>)"));
|
||||
ui->hyperlinkLabel->setText(QStringLiteral(R"(<a href="https://o3de.org/docs/user-guide/components/development/reflection/">Reflected Property Editor docs</a>)"));
|
||||
}
|
||||
|
||||
ReflectedPropertyEditorPage::~ReflectedPropertyEditorPage()
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ namespace AzToolsFramework
|
||||
connect(ui->SCRIPT_INPUT, &QLineEdit::textChanged, this, &CScriptTermDialog::OnScriptInputTextChanged);
|
||||
connect(ui->SCRIPT_HELP, &QToolButton::clicked, this, &CScriptTermDialog::OnScriptHelp);
|
||||
connect(ui->SCRIPT_DOCS, &QToolButton::clicked, this, []() {
|
||||
QDesktopServices::openUrl(QUrl("https://docs.o3de.org/docs/user-guide/scripting/"));
|
||||
QDesktopServices::openUrl(QUrl("https://o3de.org/docs/user-guide/scripting/"));
|
||||
});
|
||||
|
||||
InitCompleter();
|
||||
|
||||
+1
-1
@@ -1023,7 +1023,7 @@ namespace AzToolsFramework
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/LuaScript.svg")
|
||||
->Attribute(AZ::Edit::Attributes::PrimaryAssetType, AZ::AzTypeInfo<AZ::ScriptAsset>::Uuid())
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Script.png")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/lua-script/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/lua-script/")
|
||||
->DataElement("AssetRef", &ScriptEditorComponent::m_scriptAsset, "Script", "Which script to use")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &ScriptEditorComponent::ScriptHasChanged)
|
||||
->Attribute("BrowseIcon", ":/stylesheet/img/UI20/browse-edit-select-files.svg")
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace AzToolsFramework
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EntitySearch_TestComponent1::m_boolValue, "Bool", "")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EntitySearch_TestComponent1::m_intValue, "Int", "")
|
||||
;
|
||||
@@ -106,7 +106,7 @@ namespace AzToolsFramework
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EntitySearch_TestComponent2::m_floatValue, "Float", "")
|
||||
;
|
||||
}
|
||||
|
||||
@@ -118,7 +118,7 @@ namespace UnitTest
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &Inspector_TestComponent2::m_data, "Data", "The component's Data");
|
||||
}
|
||||
}
|
||||
@@ -187,7 +187,7 @@ namespace UnitTest
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &Inspector_TestComponent3::m_data, "Data", "The component's Data");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING
|
||||
AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING
|
||||
|
||||
|
||||
static const char* g_assetProcessorLink = "<a href=\"https://docs.o3de.org/docs/user-guide/assets/pipeline/processor-ui/\">Asset Processor</a>";
|
||||
static const char* g_assetProcessorLink = "<a href=\"https://o3de.org/docs/user-guide/assets/pipeline/processor-ui/\">Asset Processor</a>";
|
||||
static const char* g_copyFilesMessage = "The original file will remain outside of the project and the %1 will not monitor the file.";
|
||||
static const char* g_moveFilesMessage = "The original file will be moved inside of the project and the %1 will monitor the file for changes.";
|
||||
static const char* g_selectDestinationFilesPath = "AssetImporter/SelectDestinationFilesPath";
|
||||
|
||||
@@ -798,7 +798,7 @@ QMenu* LevelEditorMenuHandler::CreateHelpMenu()
|
||||
auto text = lineEdit->text();
|
||||
if (text.isEmpty())
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl("https://docs.o3de.org/docs/"));
|
||||
QDesktopServices::openUrl(QUrl("https://o3de.org/docs/"));
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -807,17 +807,10 @@ QMenu* LevelEditorMenuHandler::CreateHelpMenu()
|
||||
const SFileVersion& productVersion = gEnv->pSystem->GetProductVersion();
|
||||
productVersion.ToString(productVersionString, versionStringSize);
|
||||
|
||||
QUrl docSearchUrl("https://docs.aws.amazon.com/search/doc-search.html");
|
||||
QUrl docSearchUrl("https://o3de.org/docs/");
|
||||
QUrlQuery docSearchQuery;
|
||||
QString o3deProductString = QUrl::toPercentEncoding("Open 3D Engine");
|
||||
// The order of these QueryItems matters. wiki Search URL Formatting
|
||||
docSearchQuery.addQueryItem("searchPath", "documentation-product");
|
||||
docSearchQuery.addQueryItem("searchQuery", text);
|
||||
docSearchQuery.addQueryItem("this_doc_product", o3deProductString);
|
||||
docSearchQuery.addQueryItem("ref", "lye");
|
||||
docSearchQuery.addQueryItem("ev", productVersionString);
|
||||
docSearchQuery.addQueryItem("query", text);
|
||||
docSearchUrl.setQuery(docSearchQuery);
|
||||
docSearchUrl.setFragment(QString("facet_doc_product=%1").arg(o3deProductString));
|
||||
QDesktopServices::openUrl(docSearchUrl);
|
||||
}
|
||||
lineEdit->clear();
|
||||
|
||||
@@ -199,7 +199,7 @@ namespace AssetBundler
|
||||
void MainWindow::OnSupportClicked()
|
||||
{
|
||||
QDesktopServices::openUrl(
|
||||
QStringLiteral("https://docs.o3de.org/docs/user-guide/packaging/asset-bundler/"));
|
||||
QStringLiteral("https://o3de.org/docs/user-guide/packaging/asset-bundler/"));
|
||||
}
|
||||
|
||||
void MainWindow::ShowLogContextMenu(const QPoint& pos)
|
||||
|
||||
@@ -509,7 +509,7 @@ void MainWindow::OnRescanButtonClicked()
|
||||
void MainWindow::OnSupportClicked(bool /*checked*/)
|
||||
{
|
||||
QDesktopServices::openUrl(
|
||||
QStringLiteral("https://docs.o3de.org/docs/user-guide/assets/pipeline/"));
|
||||
QStringLiteral("https://o3de.org/docs/user-guide/assets/pipeline/"));
|
||||
}
|
||||
|
||||
void MainWindow::EditConnection(const QModelIndex& index)
|
||||
|
||||
@@ -438,7 +438,7 @@ namespace AssetProcessor
|
||||
void ProductAssetDetailsPanel::OnSupportClicked(bool /*checked*/)
|
||||
{
|
||||
QDesktopServices::openUrl(
|
||||
QStringLiteral("https://docs.o3de.org/docs/user-guide/packaging/asset-bundler/assets-resolving/"));
|
||||
QStringLiteral("https://o3de.org/docs/user-guide/packaging/asset-bundler/assets-resolving/"));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -9,45 +9,45 @@
|
||||
|
||||
namespace AWSCore
|
||||
{
|
||||
static constexpr const char NewToAWSUrl[] = "https://docs.o3de.org/docs/user-guide/gems/reference/aws/";
|
||||
static constexpr const char NewToAWSUrl[] = "https://o3de.org/docs/user-guide/gems/reference/aws/";
|
||||
|
||||
static constexpr const char AWSAndGettingStartedUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-core/getting-started/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-core/getting-started/";
|
||||
static constexpr const char AWSAndResourceMappingsUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-core/resource-mapping-files/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-core/resource-mapping-files/";
|
||||
static constexpr const char AWSAndResourceMappingToolUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-core/resource-mapping-tool/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-core/resource-mapping-tool/";
|
||||
static constexpr const char AWSAndScriptingUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-core/scripting/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-core/scripting/";
|
||||
|
||||
static constexpr const char AWSCredentialConfigurationUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-core/configuring-credentials/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-core/configuring-credentials/";
|
||||
|
||||
static constexpr const char AWSClientAuthGemOverviewUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/";
|
||||
static constexpr const char AWSClientAuthGemSetupUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/setup/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/setup/";
|
||||
static constexpr const char AWSClientAuthCDKAndResourcesUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/setup/#3-deploy-the-cdk-application";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/setup/#3-deploy-the-cdk-application";
|
||||
static constexpr const char AWSClientAuthScriptCanvasAndLuaUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/scripting/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/scripting/";
|
||||
static constexpr const char AWSClientAuth3rdPartyAuthProviderUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/authentication-providers/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/authentication-providers/";
|
||||
static constexpr const char AWSClientAuthCustomAuthProviderUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/authentication-providers/#using-a-custom-provider";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/authentication-providers/#using-a-custom-provider";
|
||||
static constexpr const char AWSClientAuthAPIReferenceUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/cpp-api/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/cpp-api/";
|
||||
|
||||
static constexpr const char AWSMetricsGemOverviewUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/";
|
||||
static constexpr const char AWSMetricsSetupGemUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/setup/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/setup/";
|
||||
static constexpr const char AWSMetricsScriptingUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/scripting/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/scripting/";
|
||||
static constexpr const char AWSMetricsAPIReferenceUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/cpp-api/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/cpp-api/";
|
||||
static constexpr const char AWSMetricsAdvancedTopicsUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/advanced-topics/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/advanced-topics/";
|
||||
static constexpr const char AWSMetricsSettingsUrl[] =
|
||||
"https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/";
|
||||
"https://o3de.org/docs/user-guide/gems/reference/aws/aws-metrics/";
|
||||
} // namespace AWSCore
|
||||
|
||||
@@ -168,7 +168,7 @@ namespace ImageProcessingAtomEditor
|
||||
|
||||
void TexturePropertyEditor::OnHelp()
|
||||
{
|
||||
QString webLink = tr("https://docs.o3de.org/docs/");
|
||||
QString webLink = tr("https://o3de.org/docs/");
|
||||
QDesktopServices::openUrl(QUrl(webLink));
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -69,7 +69,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(
|
||||
AZ::Edit::Attributes::HelpPageURL,
|
||||
"https://docs.o3de.org/docs/user-guide/components/reference/attachment/")
|
||||
"https://o3de.org/docs/user-guide/components/reference/attachment/")
|
||||
->DataElement(0, &EditorAttachmentComponent::m_targetId, "Target entity", "Attach to this entity.")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorAttachmentComponent::OnTargetIdChanged)
|
||||
->DataElement(
|
||||
|
||||
+1
-1
@@ -48,7 +48,7 @@ namespace AZ
|
||||
->Attribute(Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/area-light/")
|
||||
->Attribute(Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/area-light/")
|
||||
;
|
||||
|
||||
editContext->Class<AreaLightComponentController>(
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC_CE("Game"))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/decal/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/decal/")
|
||||
;
|
||||
|
||||
editContext->Class<DecalComponentController>(
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
;
|
||||
|
||||
editContext->Class<GridComponentController>(
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
;
|
||||
|
||||
editContext->Class<ImageBasedLightComponentController>(
|
||||
|
||||
+1
-1
@@ -136,7 +136,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::PrimaryAssetType, AZ::AzTypeInfo<RPI::MaterialAsset>::Uuid())
|
||||
->DataElement(AZ::Edit::UIHandlers::MultiLineEdit, &EditorMaterialComponent::m_message, "Message", "")
|
||||
->Attribute(AZ_CRC("PlaceholderText", 0xa23ec278), "Component cannot be edited with multiple entities selected")
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::PrimaryAssetType, AZ::AzTypeInfo<RPI::ModelAsset>::Uuid())
|
||||
->DataElement(AZ::Edit::UIHandlers::Button, &EditorMeshComponent::m_addMaterialComponentFlag, "Add Material Component", "Add Material Component")
|
||||
->Attribute(AZ::Edit::Attributes::NameLabelOverride, "")
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
;
|
||||
|
||||
editContext->Class<PostFxLayerComponentController>(
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
;
|
||||
|
||||
editContext->Class<HDRiSkyboxComponentController>(
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ namespace AZ
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/atom/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/atom/")
|
||||
;
|
||||
|
||||
editContext->Class<PhysicalSkyComponentController>(
|
||||
|
||||
+1
-1
@@ -28,6 +28,6 @@ namespace SurfaceData
|
||||
static constexpr const char* const s_componentDescription = "Enables a static mesh to emit surface tags";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/SurfaceData.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/SurfaceData.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/reference/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/reference/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace Blast
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(
|
||||
AZ::Edit::Attributes::HelpPageURL,
|
||||
"https://docs.o3de.org/docs/user-guide/components/reference/blast-family/")
|
||||
"https://o3de.org/docs/user-guide/components/reference/blast-family/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->DataElement(
|
||||
AZ::Edit::UIHandlers::Default, &EditorBlastFamilyComponent::m_blastAsset, "Blast asset",
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace Blast
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(
|
||||
AZ::Edit::Attributes::HelpPageURL,
|
||||
"https://docs.o3de.org/docs/user-guide/components/reference/blast-family-mesh-data/")
|
||||
"https://o3de.org/docs/user-guide/components/reference/blast-family-mesh-data/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->DataElement(
|
||||
AZ::Edit::UIHandlers::CheckBox, &EditorBlastMeshDataComponent::m_showMeshAssets,
|
||||
|
||||
@@ -106,7 +106,7 @@ namespace Camera
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Editor/Icons/Components/Viewport/Camera.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/camera/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/camera/")
|
||||
->UIElement(AZ::Edit::UIHandlers::Button,"", "Sets the view to this camera")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorCameraComponent::OnPossessCameraButtonClicked)
|
||||
->Attribute(AZ::Edit::Attributes::ButtonText, &EditorCameraComponent::GetCameraViewButtonText)
|
||||
|
||||
@@ -125,7 +125,7 @@ namespace Camera
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Editor/Icons/Components/CameraRig.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Editor/Icons/Components/Viewport/CameraRig.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/camera-rig/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/camera-rig/")
|
||||
->DataElement(0, &CameraRigComponent::m_targetAcquirers, "Target acquirers",
|
||||
"A list of behaviors that define how a camera will select a target. They are executed in order until one succeeds")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
|
||||
@@ -461,12 +461,12 @@ namespace EMStudio
|
||||
|
||||
menu->addAction("Documentation", this, []
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl("https://docs.o3de.org/docs/"));
|
||||
QDesktopServices::openUrl(QUrl("https://o3de.org/docs/"));
|
||||
});
|
||||
|
||||
menu->addAction("Forums", this, []
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl("https://docs.o3de.org/community/"));
|
||||
QDesktopServices::openUrl(QUrl("https://o3de.org/community/"));
|
||||
});
|
||||
|
||||
menu->addSeparator();
|
||||
|
||||
@@ -66,7 +66,7 @@ namespace EMotionFX
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, ":/EMotionFX/ActorComponent.svg")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/actor/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/actor/")
|
||||
->DataElement(0, &EditorActorComponent::m_actorAsset,
|
||||
"Actor asset", "Assigned actor asset")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorActorComponent::OnAssetSelected)
|
||||
|
||||
+1
-1
@@ -65,7 +65,7 @@ namespace EMotionFX
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, ":/EMotionFX/AnimGraphComponent.svg")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/animgraph/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/animgraph/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorAnimGraphComponent::m_motionSetAsset,
|
||||
"Motion set asset", "EMotion FX motion set asset to be loaded for this actor.")
|
||||
->Attribute("EditButton", "")
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ namespace EMotionFX
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorSimpleMotionComponent::OnEditorPropertyChanged)
|
||||
->DataElement(0, &EditorSimpleMotionComponent::m_configuration, "Configuration", "Settings for this Simple Motion")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorSimpleMotionComponent::OnEditorPropertyChanged)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/simple-motion/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/simple-motion/")
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ namespace FastNoiseGem
|
||||
static constexpr const char* const s_componentDescription = "Generates gradient values using FastNoise a noise generation library with a collection of realtime noise algorithms";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
private:
|
||||
AZ::Crc32 OnGenerateRandomSeed();
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Returns a specified value as a gradient when sampled";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Applies ordered dithering to the input gradient";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
protected:
|
||||
AZ::u32 ConfigurationChanged() override;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Enables a gradient to emit surface tags";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/SurfaceData.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/SurfaceData.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
private:
|
||||
AZ::u32 ConfigurationChanged() override;
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Transforms coordinates into a space relative to a shape, allowing other transform and sampling modifications";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
private:
|
||||
AZ::u32 ConfigurationChanged() override;
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient by sampling an image asset";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Inverts a gradient's values";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Modifies an input gradient's signal using low/mid/high points and allows clamping of min/max output values";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a new gradient by combining other gradients";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient by sampling a perlin noise generator";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
private:
|
||||
AZ::Crc32 OnGenerateRandomSeed();
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Divides an input gradient's signal into a specified number of bands";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient by sampling a random noise generator";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
private:
|
||||
AZ::Crc32 OnGenerateRandomSeed();
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "References another gradient";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient based on distance from a shape";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient with fall off, which creates a smoother input gradient";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient based on height within a range";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
|
||||
// AZ::Component interface
|
||||
void Activate() override;
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient based on underlying surface types";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Generates a gradient based on surface angle";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace GradientSignal
|
||||
static constexpr const char* const s_componentDescription = "Converts input gradient to be 0 if below the threshold or 1 if above the threshold";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/GradientModifier.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/GradientModifier.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/NavigationArea.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/NavigationArea.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/nav-area/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/nav-area/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->DataElement(AZ::Edit::UIHandlers::CheckBox, &EditorNavigationAreaComponent::m_exclusion, "Exclusion", "Does this area add or subtract from the Navigation Mesh")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorNavigationAreaComponent::OnNavigationAreaChanged)
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/NavigationSeed.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/NavigationSeed.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/nav-seed/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/nav-seed/")
|
||||
->DataElement(AZ::Edit::UIHandlers::ComboBox, &EditorNavigationSeedComponent::m_agentType, "Agent Type", "Describes the type of the Entity for navigation purposes.")
|
||||
->Attribute(AZ::Edit::Attributes::StringList, &PopulateAgentTypeList)
|
||||
->Attribute("ChangeNotify", &EditorNavigationSeedComponent::OnAgentTypeChanged);
|
||||
|
||||
@@ -126,7 +126,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Navigation.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/navigation/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/navigation/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &NavigationComponent::m_agentSpeed, "Agent Speed",
|
||||
"The speed of the agent while navigating ")
|
||||
->DataElement(AZ::Edit::UIHandlers::ComboBox, &NavigationComponent::m_agentType, "Agent Type",
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/AudioProxy.svg")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AddableByUser, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-proxy/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-proxy/")
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioAreaEnvironment.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-area-environment/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-area-environment/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioAreaEnvironmentComponent::m_broadPhaseTriggerArea,
|
||||
"Broad-phase trigger area", "The entity that contains a Trigger Area component for broad-phase checks")
|
||||
->Attribute(AZ::Edit::Attributes::RequiredService, AZ_CRC("ProximityTriggerService", 0x561f262c))
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioEnvironment.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-environment/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-environment/")
|
||||
->DataElement("AudioControl", &EditorAudioEnvironmentComponent::m_defaultEnvironment, "Default Environment", "Name of the default ATL Environment control to use")
|
||||
;
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioListener.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-listener/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-listener/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioListenerComponent::m_rotationEntity,
|
||||
"Rotation Entity", "The Entity whose rotation the audio listener will adopt. If none set, will assume 'this' Entity")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorAudioListenerComponent::m_positionEntity,
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace LmbrCentral
|
||||
// Icon todo:
|
||||
//->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioPreload.png")
|
||||
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-preload/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-preload/")
|
||||
|
||||
->DataElement("AudioControl", &EditorAudioPreloadComponent::m_defaultPreload, "Preload Name", "The default ATL Preload control to use")
|
||||
->DataElement(AZ::Edit::UIHandlers::ComboBox, &EditorAudioPreloadComponent::m_loadType, "Load Type", "Automatically when the component activates/deactivates, or Manually at user's request")
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioRtpc.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-rtpc/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-rtpc/")
|
||||
->DataElement("AudioControl", &EditorAudioRtpcComponent::m_defaultRtpc, "Default Rtpc", "The default ATL Rtpc control to use")
|
||||
;
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioSwitch.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-switch/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-switch/")
|
||||
->DataElement("AudioControl", &EditorAudioSwitchComponent::m_defaultSwitch, "Default Switch", "The default ATL Switch to use when Activated")
|
||||
->DataElement("AudioControl", &EditorAudioSwitchComponent::m_defaultState, "Default State", "The default ATL State to set on the default Switch when Activated")
|
||||
;
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/AudioTrigger.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/audio-trigger/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/audio-trigger/")
|
||||
->DataElement("AudioControl", &EditorAudioTriggerComponent::m_defaultPlayTrigger, "Default 'play' Trigger", "The default ATL Trigger control used by 'Play'")
|
||||
->DataElement("AudioControl", &EditorAudioTriggerComponent::m_defaultStopTrigger, "Default 'stop' Trigger", "The default ATL Trigger control used by 'Stop'")
|
||||
->DataElement(AZ::Edit::UIHandlers::ComboBox, &EditorAudioTriggerComponent::m_obstructionType, "Obstruction Type", "Ray-casts used in calculation of obstruction and occlusion")
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Comment.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZStd::vector<AZ::Crc32>({ AZ_CRC("Level", 0x9aeacc13), AZ_CRC("Game", 0x232b318c), AZ_CRC("Layer", 0xe4db211a) }))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/comment/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/comment/")
|
||||
->DataElement(AZ::Edit::UIHandlers::MultiLineEdit, &EditorCommentComponent::m_comment,"", "Comment")
|
||||
->Attribute(AZ_CRC("PlaceholderText", 0xa23ec278), "Add comment text here");
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Spawner.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/spawner/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/spawner/")
|
||||
->DataElement(0, &EditorSpawnerComponent::m_sliceAsset, "Dynamic slice", "The slice to spawn")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorSpawnerComponent::SliceAssetChanged)
|
||||
->DataElement(0, &EditorSpawnerComponent::m_spawnOnActivate, "Spawn on activate", "Should the component spawn the selected slice upon activation?")
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Tag.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Tag.png")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/tag/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/tag/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorTagComponent::m_tags, "Tags", "The tags that will be on this entity by default")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorTagComponent::OnTagChanged);
|
||||
}
|
||||
|
||||
@@ -204,7 +204,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/SimpleState.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/SimpleState.png")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/simple-state/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/simple-state/")
|
||||
->DataElement(AZ::Edit::UIHandlers::ComboBox, &SimpleStateComponent::m_initialStateName, "Initial state", "The initial active state")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ_CRC("RefreshAttributesAndValues", 0xcbc2147c))
|
||||
->Attribute(AZ::Edit::Attributes::StringList, &SimpleStateComponent::GetStateNames)
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Box_Shape.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/box-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/box-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorBoxShapeComponent::m_boxShape, "Box Shape", "Box Shape Configuration")
|
||||
// ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) // disabled - prevents ChangeNotify attribute firing correctly
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorBoxShapeComponent::ConfigurationChanged)
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Capsule_Shape.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/capsule-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/capsule-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorCapsuleShapeComponent::m_capsuleShape, "Capsule Shape", "Capsule Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorCapsuleShapeComponent::ConfigurationChanged)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Sphere.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/compound-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/compound-shape/")
|
||||
->DataElement(0, &EditorCompoundShapeComponent::m_configuration, "Configuration", "Compound Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorCompoundShapeComponent::ConfigurationChanged)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ_CRC("PropertyVisibility_ShowChildrenOnly", 0xef428f20))
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Cylinder_Shape.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/cylinder-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/cylinder-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorCylinderShapeComponent::m_cylinderShape, "Cylinder Shape", "Cylinder Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorCylinderShapeComponent::ConfigurationChanged)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Disk_Shape.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/disk-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/disk-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorDiskShapeComponent::m_diskShape, "Disk Shape", "Disk Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorDiskShapeComponent::ConfigurationChanged)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
|
||||
@@ -163,7 +163,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/PolygonPrism.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/PolygonPrism.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/polygon-prism-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/polygon-prism-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorPolygonPrismShapeComponent::m_polygonPrismShape, "Configuration", "PolygonPrism Shape Configuration")
|
||||
// ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) // disabled - prevents ChangeNotify attribute firing correctly
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Component_Placeholder.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/quad-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/quad-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorQuadShapeComponent::m_quadShape, "Quad Shape", "Quad Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorQuadShapeComponent::ConfigurationChanged)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Sphere_Shape.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/sphere-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/sphere-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorSphereShapeComponent::m_sphereShape, "Sphere Shape", "Sphere Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorSphereShapeComponent::ConfigurationChanged)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Spline.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Spline.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/spline/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/spline/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorSplineComponent::m_visibleInEditor, "Visible", "Always display this shape in the editor viewport")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorSplineComponent::m_splineCommon, "Configuration", "Spline Configuration")
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace LmbrCentral
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/Tube_Shape.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/shape/tube-shape/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/tube-shape/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorTubeShapeComponent::m_tubeShape, "TubeShape", "Tube Shape Configuration")
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorTubeShapeComponent::ConfigurationChanged)
|
||||
//->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) // disabled - prevents ChangeNotify attribute firing correctly
|
||||
|
||||
@@ -882,8 +882,8 @@ void EditorWindow::AddMenu_PreviewView()
|
||||
|
||||
void EditorWindow::AddMenu_Help()
|
||||
{
|
||||
const char* documentationUrl = "https://docs.o3de.org/docs/user-guide/interactivity/user-interface/";
|
||||
const char* tutorialsUrl = "https://docs.o3de.org/docs/learning-guide/tutorials/";
|
||||
const char* documentationUrl = "https://o3de.org/docs/user-guide/interactivity/user-interface/";
|
||||
const char* tutorialsUrl = "https://o3de.org/docs/learning-guide/tutorials/";
|
||||
const char* forumUrl = "https://o3deorg.netlify.app/community/";
|
||||
|
||||
QMenu* menu = menuBar()->addMenu("&Help");
|
||||
|
||||
@@ -168,7 +168,7 @@ void UiCanvasAssetRefComponent::Reflect(AZ::ReflectContext* context)
|
||||
->Attribute(AZ::Edit::Attributes::Category, "UI")
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/UiCanvasAssetRef.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/UiCanvasRef.png")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/ui-canvas-asset-ref/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/ui-canvas-asset-ref/")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c));
|
||||
|
||||
editInfo->DataElement("SimpleAssetRef", &UiCanvasAssetRefComponent::m_canvasAssetRef,
|
||||
|
||||
@@ -344,7 +344,7 @@ void UiCanvasOnMeshComponent::Reflect(AZ::ReflectContext* context)
|
||||
->Attribute(AZ::Edit::Attributes::Category, "UI")
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/UiCanvasOnMesh.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/UiCanvasOnMesh.png")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/ui-canvas-on-mesh/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/ui-canvas-on-mesh/")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c));
|
||||
|
||||
editInfo->DataElement(0, &UiCanvasOnMeshComponent::m_renderTargetOverride,
|
||||
|
||||
@@ -72,7 +72,7 @@ void UiCanvasProxyRefComponent::Reflect(AZ::ReflectContext* context)
|
||||
->Attribute(AZ::Edit::Attributes::Category, "UI")
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/UiCanvasProxyRef.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/UiCanvasRef.png")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/ui-canvas-proxy-ref/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/ui-canvas-proxy-ref/")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c));
|
||||
|
||||
editInfo->DataElement(0, &UiCanvasProxyRefComponent::m_canvasAssetRefEntityId,
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace NvCloth
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/Cloth.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Cloth.svg")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/cloth/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/cloth/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
|
||||
->UIElement(AZ::Edit::UIHandlers::CheckBox, "Simulate in editor",
|
||||
|
||||
@@ -189,7 +189,7 @@ namespace PhysX
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/PhysXCollider.svg")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/PhysXCollider.svg")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/physx-collider/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/physx-collider/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorColliderComponent::m_configuration, "Collider Configuration", "Configuration of the collider")
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
|
||||
@@ -171,7 +171,7 @@ namespace PhysX
|
||||
->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/ForceRegion.png")
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/ForceRegion.png")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/physx-force-region/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/physx-force-region/")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::RequiredService, AZ_CRC("PhysXTriggerService", 0x3a117d7b))
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorForceRegionComponent::m_visibleInEditor, "Visible", "Always show the component in viewport")
|
||||
|
||||
@@ -304,7 +304,7 @@ namespace PhysX
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/PhysXRigidBody.svg")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/physx-rigid-body-physics/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/physx-rigid-body-physics/")
|
||||
->DataElement(0, &EditorRigidBodyComponent::m_config, "Configuration", "Configuration for rigid body physics.")
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
->Attribute(AZ::Edit::Attributes::ChangeNotify, &EditorRigidBodyComponent::CreateEditorWorldRigidBody)
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace PhysX
|
||||
{
|
||||
const AZStd::string& GetPhysXDocsRoot()
|
||||
{
|
||||
static const AZStd::string val = "https://docs.o3de.org/docs/user-guide/interactivity/physics/";
|
||||
static const AZStd::string val = "https://o3de.org/docs/user-guide/interactivity/physics/";
|
||||
return val;
|
||||
}
|
||||
} // namespace UXNameConstants
|
||||
|
||||
@@ -101,7 +101,7 @@ namespace ScriptCanvasEditor
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game", 0x232b318c))
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("UI", 0x27ff46b0))
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Level", 0x9aeacc13))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/script-canvas/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/script-canvas/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorScriptCanvasComponent::m_scriptCanvasAssetHolder, "Script Canvas Asset", "Script Canvas asset associated with this component")
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &EditorScriptCanvasComponent::m_editableData, "Properties", "Script Canvas Graph Properties")
|
||||
|
||||
@@ -54,7 +54,7 @@ namespace StartingPointInput
|
||||
->Attribute(AZ::Edit::Attributes::ViewportIcon, "Editor/Icons/Components/Viewport/InputConfig.png")
|
||||
->Attribute(AZ::Edit::Attributes::PrimaryAssetType, AZ::AzTypeInfo<InputEventBindingsAsset>::Uuid())
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game"))
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/input/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/input/")
|
||||
->DataElement(AZ::Edit::UIHandlers::Default, &InputConfigurationComponent::m_inputEventBindingsAsset, "Input to event bindings",
|
||||
"Asset containing input to event binding information.")
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
|
||||
@@ -28,6 +28,6 @@ namespace SurfaceData
|
||||
static constexpr const char* const s_componentDescription = "Enables a physics collider to emit surface tags";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/SurfaceData.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/SurfaceData.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/reference/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/reference/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,6 +28,6 @@ namespace SurfaceData
|
||||
static constexpr const char* const s_componentDescription = "Enables a shape to emit surface tags";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/SurfaceData.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/SurfaceData.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/reference/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/reference/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -307,7 +307,7 @@ namespace Vegetation
|
||||
->Attribute(AZ::Edit::Attributes::Category, "Vegetation")
|
||||
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System", 0xc94d118b))
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://docs.o3de.org/docs/user-guide/components/reference/")
|
||||
->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/")
|
||||
->DataElement(0, &AreaSystemComponent::m_configuration, "Configuration", "")
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
;
|
||||
|
||||
@@ -25,6 +25,6 @@ namespace Vegetation
|
||||
static constexpr const char* const s_componentDescription = "Enables debug visualizations for vegetation layers";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Vegetation.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Vegetation.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/reference/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/reference/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace Vegetation
|
||||
static constexpr const char* const s_componentDescription = "";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Vegetation.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Vegetation.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/reference/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/reference/";
|
||||
|
||||
protected:
|
||||
void OnDumpDataToFile();
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace Vegetation
|
||||
static constexpr const char* const s_componentDescription = "Combines a collection of vegetation areas and applies them in a specified order";
|
||||
static constexpr const char* const s_icon = "Editor/Icons/Components/Vegetation.svg";
|
||||
static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Vegetation.png";
|
||||
static constexpr const char* const s_helpUrl = "https://docs.o3de.org/docs/user-guide/components/reference/";
|
||||
static constexpr const char* const s_helpUrl = "https://o3de.org/docs/user-guide/components/reference/";
|
||||
|
||||
private:
|
||||
void ForceOneEntry();
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user