Merge pull request #5871 from aws-lumberyard-dev/scripting/text_updates_pass6

Renamed 'key' to 'base' to avoid future problems with secrets patterns, cleanup and improvements
This commit is contained in:
Luis Sempé
2021-11-23 10:17:56 -08:00
committed by GitHub
384 changed files with 2415 additions and 1665 deletions
@@ -19,7 +19,6 @@
#include <GraphCanvas/Components/StyleBus.h>
#include <GraphCanvas/Components/VisualBus.h>
#include <GraphCanvas/Types/EntitySaveData.h>
#include <GraphCanvas/Types/TranslationTypes.h>
#include <Widgets/GraphCanvasLabel.h>
namespace GraphCanvas
@@ -58,7 +58,6 @@
#include <GraphCanvas/Types/ConstructPresets.h>
#include <GraphCanvas/Types/EntitySaveData.h>
#include <GraphCanvas/Types/TranslationTypes.h>
#include <GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.h>
#include <GraphCanvas/Widgets/GraphCanvasMimeEvent.h>
@@ -59,14 +59,14 @@ namespace GraphCanvas
//!
//! Requirements:
//! - Must have a top level array called "entries"
//! - Must provide a "key" element for any entry added
//! - Must provide a "base" element for any entry added
//!
//! Example:
//!
//! {
//! "entries": [
//! {
//! "key": "Globals",
//! "base": "Globals",
//! "details": {
//! "name": "My Name",
//! "tooltip": "My Tooltip"
@@ -90,21 +90,21 @@ namespace GraphCanvas
//! Globals.details.somearray.0.name
//! Globals.details.somearray.1.name
//!
//! There is one important aspect however, if an element in an array has a "key" value, the value of this key
//! There is one important aspect however, if an element in an array has a "base" value, the value of this key
//! will replace the index. This is useful when the index and/or ordering of an entry is not relevant or may
//! change.
//!
//! "somearray": [ {
//! "name": "First one"
//! "key": "a_key"
//! "base": "a_key"
//! }, {
//! "name": "Second one",
//! "key": "b_key"
//! "base": "b_key"
//! } ]
//!
//! Globals.details.somearray.0.key == "a_key"
//! Globals.details.somearray.0.base == "a_key"
//! Globals.details.somearray.0.name == "First one"
//! Globals.details.somearray.1.key == "b_key"
//! Globals.details.somearray.1.base == "b_key"
//! Globals.details.somearray.1.name == "Second one"
//!
class TranslationAssetHandler
@@ -11,17 +11,6 @@
namespace GraphCanvas
{
namespace Schema
{
namespace Field
{
static constexpr char key[] = "key";
static constexpr char context[] = "context";
static constexpr char variant[] = "variant";
static constexpr char entries[] = "entries";
}
}
AZ_CLASS_ALLOCATOR_IMPL(TranslationFormatSerializer, AZ::SystemAllocator, 0);
void AddEntryToDatabase(const AZStd::string& baseKey, const AZStd::string& name, const rapidjson::Value& it, TranslationFormat* translationFormat)
@@ -76,11 +65,15 @@ namespace GraphCanvas
const rapidjson::Value& array = it;
for (rapidjson::SizeType i = 0; i < array.Size(); ++i)
{
// so, here, I need to go in and if there is a "key" member within the object, then I need to use that,
// if there isn't, I can use the %d
// if there is a "base" member within the object, then use it, otherwise use the index
if (array[i].IsObject())
{
if (array[i].HasMember(Schema::Field::key))
if (array[i].HasMember(Schema::Field::deprecated_key))
{
AZStd::string innerKey = array[i].FindMember(Schema::Field::deprecated_key)->value.GetString();
itemKey.append(AZStd::string::format(".%s", innerKey.c_str()));
}
else if (array[i].HasMember(Schema::Field::key))
{
AZStd::string innerKey = array[i].FindMember(Schema::Field::key)->value.GetString();
itemKey.append(AZStd::string::format(".%s", innerKey.c_str()));
@@ -133,7 +126,12 @@ namespace GraphCanvas
AZStd::string keyStr;
rapidjson::Value::ConstMemberIterator keyValue;
if (entry.HasMember(Schema::Field::key))
if (entry.HasMember(Schema::Field::deprecated_key))
{
keyValue = entry.FindMember(Schema::Field::deprecated_key);
keyStr = keyValue->value.GetString();
}
else if (entry.HasMember(Schema::Field::key))
{
keyValue = entry.FindMember(Schema::Field::key);
keyStr = keyValue->value.GetString();
@@ -23,4 +23,17 @@ namespace GraphCanvas
AZ::JsonSerializationResult::Result Store(rapidjson::Value& outputValue, const void* inputValue,
const void* defaultValue, const AZ::Uuid& valueTypeId, AZ::JsonSerializerContext& context) override;
};
namespace Schema
{
namespace Field
{
// Moved away from "key" due to some strict filtering on secrets
static constexpr char deprecated_key[] = "key";
static constexpr char key[] = "base";
static constexpr char context[] = "context";
static constexpr char variant[] = "variant";
static constexpr char entries[] = "entries";
}
}
}
@@ -16,7 +16,6 @@ AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option")
AZ_POP_DISABLE_WARNING
#include <GraphCanvas/Styling/StyleHelper.h>
#include <GraphCanvas/Types/TranslationTypes.h>
namespace GraphCanvas
{
@@ -15,7 +15,6 @@
#include <GraphCanvas/Editor/EditorTypes.h>
#include <GraphCanvas/Types/EntitySaveData.h>
#include <GraphCanvas/Types/GraphCanvasGraphSerialization.h>
#include <GraphCanvas/Types/TranslationTypes.h>
#include <GraphCanvas/Components/Slots/SlotBus.h>
@@ -11,7 +11,6 @@
#include <AzCore/EBus/EBus.h>
#include <AzCore/std/string/string.h>
#include <GraphCanvas/Types/TranslationTypes.h>
#include <GraphCanvas/Components/StyleBus.h>
#include <GraphCanvas/Types/SceneMemberComponentSaveData.h>
@@ -16,7 +16,6 @@
#include <GraphCanvas/Types/Endpoint.h>
#include <GraphCanvas/Types/Types.h>
#include <GraphCanvas/Types/TranslationTypes.h>
class QGraphicsLayoutItem;
@@ -1,116 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <QCoreApplication>
#include <AzCore/Serialization/SerializeContext.h>
namespace GraphCanvas
{
struct TranslationKeyedString
{
public:
AZ_TYPE_INFO(TranslationKeyedString, "{B796685C-0335-4E74-9EF8-A1933E8B2142}");
AZ_CLASS_ALLOCATOR(TranslationKeyedString, AZ::SystemAllocator, 0);
static void Reflect(AZ::ReflectContext* context)
{
AZ::SerializeContext* serializeContext = azrtti_cast<AZ::SerializeContext*>(context);
if (!serializeContext)
{
return;
}
serializeContext->Class<TranslationKeyedString>()
->Version(1)
->Field("Fallback", &TranslationKeyedString::m_fallback)
->Field("Context", &TranslationKeyedString::m_context)
->Field("Key", &TranslationKeyedString::m_key)
;
}
TranslationKeyedString()
: m_dirtyText(true)
{
}
~TranslationKeyedString() = default;
TranslationKeyedString(const AZStd::string& fallback, const AZStd::string& context = AZStd::string(), const AZStd::string& key = AZStd::string())
: m_fallback(fallback)
, m_context(context)
, m_key(key)
, m_dirtyText(true)
{
}
const AZStd::string GetDisplayString() const
{
if (m_dirtyText)
{
const_cast<TranslationKeyedString*>(this)->TranslateString();
}
return m_display;
}
void TranslateString()
{
m_display = m_fallback;
if (!m_context.empty() && !m_key.empty())
{
AZStd::string translatedText = QCoreApplication::translate(m_context.c_str(), m_key.c_str()).toUtf8().data();
if (translatedText != m_key)
{
m_display = translatedText;
}
}
m_dirtyText = false;
}
bool empty() const
{
return m_fallback.empty() && (m_context.empty() || m_key.empty());
}
bool operator==(const TranslationKeyedString& other) const
{
return m_fallback == other.m_fallback
&& m_context == other.m_context
&& m_key == other.m_key
;
}
void Clear()
{
m_key.clear();
m_context.clear();
m_fallback.clear();
}
void SetFallback(const AZStd::string& fallback)
{
m_fallback = fallback;
m_dirtyText = true;
}
AZStd::string m_context;
AZStd::string m_key;
AZStd::string m_display;
private:
AZStd::string m_fallback;
bool m_dirtyText;
};
}
@@ -102,8 +102,7 @@ set(FILES
StaticLib/GraphCanvas/Types/GraphCanvasGraphData.h
StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.cpp
StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.h
StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h
StaticLib/GraphCanvas/Types/TranslationTypes.h
StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h
StaticLib/GraphCanvas/Types/Types.h
StaticLib/GraphCanvas/Types/QtMetaTypes.h
StaticLib/GraphCanvas/Widgets/Resources/default_style.json
@@ -5,7 +5,8 @@
"context": "BehaviorClass",
"variant": "",
"details": {
"name": "AcesParameterOverrides"
"name": "Aces Parameter Overrides",
"category": "Rendering"
},
"methods": [
{
@@ -13,21 +14,300 @@
"context": "AcesParameterOverrides",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke LoadPreset"
"tooltip": "When signaled, this will invoke Load Preset"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after LoadPreset is invoked"
"tooltip": "Signaled after Load Preset is invoked"
},
"details": {
"name": "AcesParameterOverrides::LoadPreset",
"category": "Other"
"name": "Load Preset"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": "AcesParameterOverrides*"
"name": "Aces Parameter Overrides"
}
}
]
},
{
"key": "GetOutputDeviceTransformType_4000Nits",
"details": {
"name": "Get Output Device Transform Type_ 4000 Nits"
},
"results": [
{
"typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}",
"details": {
"name": "int"
}
}
]
},
{
"key": "GetOutputDeviceTransformType_2000Nits",
"details": {
"name": "Get Output Device Transform Type_ 2000 Nits"
},
"results": [
{
"typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}",
"details": {
"name": "int"
}
}
]
},
{
"key": "GetapplyCATD60toD65",
"details": {
"name": "GetapplyCATD 60toD 65"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetapplyCATD60toD65",
"details": {
"name": "SetapplyCATD 60toD 65"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
},
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "GetOutputDeviceTransformType_48Nits",
"details": {
"name": "Get Output Device Transform Type_ 48 Nits"
},
"results": [
{
"typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}",
"details": {
"name": "int"
}
}
]
},
{
"key": "GetOutputDeviceTransformType_NumOutputDeviceTransformTypes",
"details": {
"name": "Get Output Device Transform Type_ Num Output Device Transform Types"
},
"results": [
{
"typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}",
"details": {
"name": "int"
}
}
]
},
{
"key": "GetOutputDeviceTransformType_1000Nits",
"details": {
"name": "Get Output Device Transform Type_ 1000 Nits"
},
"results": [
{
"typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}",
"details": {
"name": "int"
}
}
]
},
{
"key": "GetapplyDesaturation",
"details": {
"name": "Getapply Desaturation"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetapplyDesaturation",
"details": {
"name": "Setapply Desaturation"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
},
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "Getpreset",
"details": {
"name": "Getpreset"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{B94085B7-C0D4-466A-A791-188A4559EC8D}",
"details": {
"name": ""
}
}
]
},
{
"key": "Setpreset",
"details": {
"name": "Setpreset"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
},
{
"typeid": "{B94085B7-C0D4-466A-A791-188A4559EC8D}",
"details": {
"name": ""
}
}
]
},
{
"key": "GetalterSurround",
"details": {
"name": "Getalter Surround"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetalterSurround",
"details": {
"name": "Setalter Surround"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
},
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "GetoverrideDefaults",
"details": {
"name": "Getoverride Defaults"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetoverrideDefaults",
"details": {
"name": "Setoverride Defaults"
},
"params": [
{
"typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}",
"details": {
"name": ""
}
},
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": ""
}
}
]
@@ -5,7 +5,8 @@
"context": "BehaviorClass",
"variant": "",
"details": {
"name": "Axis Type"
"name": "Axis Type",
"category": "Constants"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "BehaviorClass",
"variant": "",
"details": {
"name": "MaterialAssignment"
"name": "Material Assignment",
"category": "Rendering"
},
"methods": [
{
@@ -13,29 +14,104 @@
"context": "MaterialAssignment",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke ToString"
"tooltip": "When signaled, this will invoke To String"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after ToString is invoked"
"tooltip": "Signaled after To String is invoked"
},
"details": {
"name": "MaterialAssignment::ToString",
"category": "Other"
"name": "To String"
},
"results": [
{
"typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}",
"details": {
"name": "AZ Std::basic_string<char, AZ Std::char_traits<char>, allocator>"
}
}
]
},
{
"key": "GetmaterialAsset",
"details": {
"name": "Getmaterial Asset"
},
"params": [
{
"typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}",
"details": {
"name": "AZ::Render::MaterialAssignment*"
"name": ""
}
}
],
"results": [
{
"typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}",
"typeid": "{834DC049-5EC3-5C29-B621-5F0046864DC4}",
"details": {
"name": "AZStd::basic_string<char, AZStd::char_traits<char>, allocator>"
"name": ""
}
}
]
},
{
"key": "SetmaterialAsset",
"details": {
"name": "Setmaterial Asset"
},
"params": [
{
"typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}",
"details": {
"name": ""
}
},
{
"typeid": "{834DC049-5EC3-5C29-B621-5F0046864DC4}",
"details": {
"name": ""
}
}
]
},
{
"key": "GetpropertyOverrides",
"details": {
"name": "Getproperty Overrides"
},
"params": [
{
"typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{6E6962E1-04C9-56F9-89C4-361031CC1384}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetpropertyOverrides",
"details": {
"name": "Setproperty Overrides"
},
"params": [
{
"typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}",
"details": {
"name": ""
}
},
{
"typeid": "{6E6962E1-04C9-56F9-89C4-361031CC1384}",
"details": {
"name": ""
}
}
]
@@ -5,7 +5,8 @@
"context": "BehaviorClass",
"variant": "",
"details": {
"name": "MaterialAssignmentId"
"name": "Material Assignment Id",
"category": "Rendering"
},
"methods": [
{
@@ -13,29 +14,20 @@
"context": "MaterialAssignmentId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke ToString"
"tooltip": "When signaled, this will invoke To String"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after ToString is invoked"
"tooltip": "Signaled after To String is invoked"
},
"details": {
"name": "MaterialAssignmentId::ToString",
"category": "Other"
"name": "To String"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": "AZ::Render::MaterialAssignmentId*"
}
}
],
"results": [
{
"typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}",
"details": {
"name": "AZStd::basic_string<char, AZStd::char_traits<char>, allocator>"
"name": "AZ Std::basic_string<char, AZ Std::char_traits<char>, allocator>"
}
}
]
@@ -45,24 +37,15 @@
"context": "MaterialAssignmentId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke IsAssetOnly"
"tooltip": "When signaled, this will invoke Is Asset Only"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after IsAssetOnly is invoked"
"tooltip": "Signaled after Is Asset Only is invoked"
},
"details": {
"name": "MaterialAssignmentId::IsAssetOnly",
"category": "Other"
"name": "Is Asset Only"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": "AZ::Render::MaterialAssignmentId*"
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
@@ -77,24 +60,15 @@
"context": "MaterialAssignmentId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke IsSlotIdOnly"
"tooltip": "When signaled, this will invoke Is Slot Id Only"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after IsSlotIdOnly is invoked"
"tooltip": "Signaled after Is Slot Id Only is invoked"
},
"details": {
"name": "MaterialAssignmentId::IsSlotIdOnly",
"category": "Other"
"name": "Is Slot Id Only"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": "AZ::Render::MaterialAssignmentId*"
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
@@ -109,24 +83,15 @@
"context": "MaterialAssignmentId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke IsLodAndSlotId"
"tooltip": "When signaled, this will invoke Is Lod And Slot Id"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after IsLodAndSlotId is invoked"
"tooltip": "Signaled after Is Lod And Slot Id is invoked"
},
"details": {
"name": "MaterialAssignmentId::IsLodAndSlotId",
"category": "Other"
"name": "Is Lod And Slot Id"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": "AZ::Render::MaterialAssignmentId*"
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
@@ -141,24 +106,15 @@
"context": "MaterialAssignmentId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke IsDefault"
"tooltip": "When signaled, this will invoke Is Default"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after IsDefault is invoked"
"tooltip": "Signaled after Is Default is invoked"
},
"details": {
"name": "MaterialAssignmentId::IsDefault",
"category": "Other"
"name": "Is Default"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": "AZ::Render::MaterialAssignmentId*"
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
@@ -173,24 +129,15 @@
"context": "MaterialAssignmentId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke IsLodAndAsset"
"tooltip": "When signaled, this will invoke Is Lod And Asset"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after IsLodAndAsset is invoked"
"tooltip": "Signaled after Is Lod And Asset is invoked"
},
"details": {
"name": "MaterialAssignmentId::IsLodAndAsset",
"category": "Other"
"name": "Is Lod And Asset"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": "AZ::Render::MaterialAssignmentId*"
}
}
],
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
@@ -199,6 +146,90 @@
}
}
]
},
{
"key": "GetlodIndex",
"details": {
"name": "Getlod Index"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetlodIndex",
"details": {
"name": "Setlod Index"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": ""
}
},
{
"typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}",
"details": {
"name": ""
}
}
]
},
{
"key": "GetmaterialSlotStableId",
"details": {
"name": "Getmaterial Slot Stable Id"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": ""
}
}
]
},
{
"key": "SetmaterialSlotStableId",
"details": {
"name": "Setmaterial Slot Stable Id"
},
"params": [
{
"typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}",
"details": {
"name": ""
}
},
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": ""
}
}
]
}
]
}
@@ -5,8 +5,55 @@
"context": "BehaviorClass",
"variant": "",
"details": {
"name": "MaterialComponentConfig"
}
"name": "Material Component Config",
"category": "Rendering"
},
"methods": [
{
"key": "Getmaterials",
"details": {
"name": "Get Materials"
},
"params": [
{
"typeid": "{3366C279-32AE-48F6-839B-7700AE117A54}",
"details": {
"name": "",
"tooltip": "Material Component Config"
}
}
],
"results": [
{
"typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}",
"details": {
"name": "Material Assignment Map"
}
}
]
},
{
"key": "Setmaterials",
"details": {
"name": "Set Materials"
},
"params": [
{
"typeid": "{3366C279-32AE-48F6-839B-7700AE117A54}",
"details": {
"name": "",
"tooltip": "Material Component Config"
}
},
{
"typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}",
"details": {
"name": "Material Assignment Map"
}
}
]
}
]
}
]
}
@@ -5,7 +5,8 @@
"context": "BehaviorClass",
"variant": "",
"details": {
"name": "ShaderSemantic"
"name": "Shader Semantic",
"category": "Rendering"
},
"methods": [
{
@@ -13,29 +14,104 @@
"context": "ShaderSemantic",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke ToString"
"tooltip": "When signaled, this will invoke To String"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after ToString is invoked"
"tooltip": "Signaled after To String is invoked"
},
"details": {
"name": "ShaderSemantic::ToString",
"category": "Other"
"name": "To String"
},
"results": [
{
"typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}",
"details": {
"name": "AZ Std::basic_string<char, AZ Std::char_traits<char>, allocator>"
}
}
]
},
{
"key": "Getname",
"details": {
"name": "Getname"
},
"params": [
{
"typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}",
"details": {
"name": "ShaderSemantic*"
"name": ""
}
}
],
"results": [
{
"typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}",
"typeid": "{3D2B920C-9EFD-40D5-AAE0-DF131C3D4931}",
"details": {
"name": "AZStd::basic_string<char, AZStd::char_traits<char>, allocator>"
"name": ""
}
}
]
},
{
"key": "Setname",
"details": {
"name": "Setname"
},
"params": [
{
"typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}",
"details": {
"name": ""
}
},
{
"typeid": "{3D2B920C-9EFD-40D5-AAE0-DF131C3D4931}",
"details": {
"name": ""
}
}
]
},
{
"key": "Getindex",
"details": {
"name": "Getindex"
},
"params": [
{
"typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}",
"details": {
"name": ""
}
}
],
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": ""
}
}
]
},
{
"key": "Setindex",
"details": {
"name": "Setindex"
},
"params": [
{
"typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}",
"details": {
"name": ""
}
},
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": ""
}
}
]
@@ -32,7 +32,7 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "Motion Name"
"name": "char"
}
}
]
@@ -46,7 +46,7 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "State Name"
"name": "char"
}
}
]
@@ -60,7 +60,7 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "State Name"
"name": "char"
}
}
]
@@ -74,7 +74,7 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "State Name"
"name": "char"
}
}
]
@@ -88,7 +88,7 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "State Name"
"name": "char"
}
}
]
@@ -102,13 +102,13 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "From State"
"name": "char"
}
},
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "To State"
"name": "char"
}
}
]
@@ -122,13 +122,13 @@
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "From State"
"name": "char"
}
},
{
"typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}",
"details": {
"name": "To State"
"name": "char"
}
}
]
@@ -5,8 +5,8 @@
"context": "EBusHandler",
"variant": "",
"details": {
"name": "Audio System",
"category": "EBus Handlers"
"name": "Audio System",
"category": "Audio"
},
"methods": [
{
@@ -5,13 +5,14 @@
"context": "EBusHandler",
"variant": "",
"details": {
"name": "MeshComponentNotificationBus"
"name": "Mesh",
"category": "Rendering"
},
"methods": [
{
"key": "OnModelReady",
"details": {
"name": "OnModelReady"
"name": "On Model Ready"
},
"params": [
{
@@ -1,7 +1,7 @@
{
"entries": [
{
"key": "AuthenticationProviderRequestBus",
"base": "AuthenticationProviderRequestBus",
"context": "EBusSender",
"variant": "",
"details": {
File diff suppressed because it is too large Load Diff
@@ -5,27 +5,50 @@
"context": "EBusSender",
"variant": "",
"details": {
"name": "DirectionalLightRequestBus"
"name": "Directional Light",
"category": "Lights"
},
"methods": [
{
"key": "GetShadowBias",
"key": "GetNormalShadowBias",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetShadowBias"
"tooltip": "When signaled, this will invoke Get Normal Shadow Bias"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetShadowBias is invoked"
"tooltip": "Signaled after Get Normal Shadow Bias is invoked"
},
"details": {
"name": "GetShadowBias"
"name": "Get Normal Shadow Bias"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Normal Shadow Bias"
}
}
]
},
{
"key": "GetShadowBias",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke Get Shadow Bias"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after Get Shadow Bias is invoked"
},
"details": {
"name": "Get Shadow Bias"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "Shadow Bias"
}
}
]
@@ -34,20 +57,20 @@
"key": "SetAngularDiameter",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetAngularDiameter"
"tooltip": "When signaled, this will invoke Set Angular Diameter"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetAngularDiameter is invoked"
"tooltip": "Signaled after Set Angular Diameter is invoked"
},
"details": {
"name": "SetAngularDiameter"
"name": "Set Angular Diameter"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Angular Diameter"
}
}
]
@@ -56,20 +79,20 @@
"key": "GetShadowFarClipDistance",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetShadowFarClipDistance"
"tooltip": "When signaled, this will invoke Get Shadow Far Clip Distance"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetShadowFarClipDistance is invoked"
"tooltip": "Signaled after Get Shadow Far Clip Distance is invoked"
},
"details": {
"name": "GetShadowFarClipDistance"
"name": "Get Shadow Far Clip Distance"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Shadow Far Clip Distance"
}
}
]
@@ -78,20 +101,20 @@
"key": "SetShadowBias",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetShadowBias"
"tooltip": "When signaled, this will invoke Set Shadow Bias"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetShadowBias is invoked"
"tooltip": "Signaled after Set Shadow Bias is invoked"
},
"details": {
"name": "SetShadowBias"
"name": "Set Shadow Bias"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Shadow Bias"
}
}
]
@@ -100,20 +123,20 @@
"key": "SetIntensity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetIntensity"
"tooltip": "When signaled, this will invoke Set Intensity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetIntensity is invoked"
"tooltip": "Signaled after Set Intensity is invoked"
},
"details": {
"name": "SetIntensity"
"name": "Set Intensity"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Intensity"
}
}
]
@@ -122,20 +145,20 @@
"key": "SetSplitRatio",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetSplitRatio"
"tooltip": "When signaled, this will invoke Set Split Ratio"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetSplitRatio is invoked"
"tooltip": "Signaled after Set Split Ratio is invoked"
},
"details": {
"name": "SetSplitRatio"
"name": "Set Split Ratio"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Split Ratio"
}
}
]
@@ -144,20 +167,20 @@
"key": "GetFilteringSampleCount",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetFilteringSampleCount"
"tooltip": "When signaled, this will invoke Get Filtering Sample Count"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetFilteringSampleCount is invoked"
"tooltip": "Signaled after Get Filtering Sample Count is invoked"
},
"details": {
"name": "GetFilteringSampleCount"
"name": "Get Filtering Sample Count"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Filtering Sample Count"
}
}
]
@@ -166,20 +189,20 @@
"key": "GetShadowFilterMethod",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetShadowFilterMethod"
"tooltip": "When signaled, this will invoke Get Shadow Filter Method"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetShadowFilterMethod is invoked"
"tooltip": "Signaled after Get Shadow Filter Method is invoked"
},
"details": {
"name": "GetShadowFilterMethod"
"name": "Get Shadow Filter Method"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Shadow Filter Method"
}
}
]
@@ -188,20 +211,20 @@
"key": "GetCameraEntityId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetCameraEntityId"
"tooltip": "When signaled, this will invoke Get Camera Entity Id"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetCameraEntityId is invoked"
"tooltip": "Signaled after Get Camera Entity Id is invoked"
},
"details": {
"name": "GetCameraEntityId"
"name": "Get Camera Entity Id"
},
"results": [
{
"typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}",
"details": {
"name": "EntityId",
"name": "Camera Entity Id",
"tooltip": "Entity Unique Id"
}
}
@@ -211,20 +234,20 @@
"key": "SetDebugColoringEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetDebugColoringEnabled"
"tooltip": "When signaled, this will invoke Set Debug Coloring Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetDebugColoringEnabled is invoked"
"tooltip": "Signaled after Set Debug Coloring Enabled is invoked"
},
"details": {
"name": "SetDebugColoringEnabled"
"name": "Set Debug Coloring Enabled"
},
"params": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Enabled"
}
}
]
@@ -233,20 +256,20 @@
"key": "GetDebugColoringEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetDebugColoringEnabled"
"tooltip": "When signaled, this will invoke Get Debug Coloring Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetDebugColoringEnabled is invoked"
"tooltip": "Signaled after Get Debug Coloring Enabled is invoked"
},
"details": {
"name": "GetDebugColoringEnabled"
"name": "Get Debug Coloring Enabled"
},
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Enabled"
}
}
]
@@ -255,20 +278,20 @@
"key": "GetViewFrustumCorrectionEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetViewFrustumCorrectionEnabled"
"tooltip": "When signaled, this will invoke Get View Frustum Correction Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetViewFrustumCorrectionEnabled is invoked"
"tooltip": "Signaled after Get View Frustum Correction Enabled is invoked"
},
"details": {
"name": "GetViewFrustumCorrectionEnabled"
"name": "Get View Frustum Correction Enabled"
},
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Enabled"
}
}
]
@@ -277,20 +300,20 @@
"key": "SetViewFrustumCorrectionEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetViewFrustumCorrectionEnabled"
"tooltip": "When signaled, this will invoke Set View Frustum Correction Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetViewFrustumCorrectionEnabled is invoked"
"tooltip": "Signaled after Set View Frustum Correction Enabled is invoked"
},
"details": {
"name": "SetViewFrustumCorrectionEnabled"
"name": "Set View Frustum Correction Enabled"
},
"params": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Enabled"
}
}
]
@@ -299,20 +322,20 @@
"key": "SetGroundHeight",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetGroundHeight"
"tooltip": "When signaled, this will invoke Set Ground Height"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetGroundHeight is invoked"
"tooltip": "Signaled after Set Ground Height is invoked"
},
"details": {
"name": "SetGroundHeight"
"name": "Set Ground Height"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Ground Height"
}
}
]
@@ -321,20 +344,20 @@
"key": "GetShadowReceiverPlaneBiasEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetShadowReceiverPlaneBiasEnabled"
"tooltip": "When signaled, this will invoke Get Shadow Receiver Plane Bias Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetShadowReceiverPlaneBiasEnabled is invoked"
"tooltip": "Signaled after Get Shadow Receiver Plane Bias Enabled is invoked"
},
"details": {
"name": "GetShadowReceiverPlaneBiasEnabled"
"name": "Get Shadow Receiver Plane Bias Enabled"
},
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Shadow Receiver Plane Bias"
}
}
]
@@ -343,20 +366,20 @@
"key": "SetShadowmapSize",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetShadowmapSize"
"tooltip": "When signaled, this will invoke Set Shadowmap Size"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetShadowmapSize is invoked"
"tooltip": "Signaled after Set Shadowmap Size is invoked"
},
"details": {
"name": "SetShadowmapSize"
"name": "Set Shadowmap Size"
},
"params": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Shadowmap Size"
}
}
]
@@ -365,20 +388,20 @@
"key": "SetShadowFarClipDistance",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetShadowFarClipDistance"
"tooltip": "When signaled, this will invoke Set Shadow Far Clip Distance"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetShadowFarClipDistance is invoked"
"tooltip": "Signaled after Set Shadow Far Clip Distance is invoked"
},
"details": {
"name": "SetShadowFarClipDistance"
"name": "Set Shadow Far Clip Distance"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Shadow Far Clip Distance"
}
}
]
@@ -387,20 +410,20 @@
"key": "SetCameraEntityId",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetCameraEntityId"
"tooltip": "When signaled, this will invoke Set Camera Entity Id"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetCameraEntityId is invoked"
"tooltip": "Signaled after Set Camera Entity Id is invoked"
},
"details": {
"name": "SetCameraEntityId"
"name": "Set Camera Entity Id"
},
"params": [
{
"typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}",
"details": {
"name": "EntityId",
"name": "Camera Entity Id",
"tooltip": "Entity Unique Id"
}
}
@@ -410,14 +433,14 @@
"key": "GetColor",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetColor"
"tooltip": "When signaled, this will invoke Get Color"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetColor is invoked"
"tooltip": "Signaled after Get Color is invoked"
},
"details": {
"name": "GetColor"
"name": "Get Color"
},
"results": [
{
@@ -432,20 +455,20 @@
"key": "SetSplitAutomatic",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetSplitAutomatic"
"tooltip": "When signaled, this will invoke Set Split Automatic"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetSplitAutomatic is invoked"
"tooltip": "Signaled after Set Split Automatic is invoked"
},
"details": {
"name": "SetSplitAutomatic"
"name": "Set Split Automatic"
},
"params": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Split Automatic"
}
}
]
@@ -454,20 +477,20 @@
"key": "SetCascadeFarDepth",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetCascadeFarDepth"
"tooltip": "When signaled, this will invoke Set Cascade Far Depth"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetCascadeFarDepth is invoked"
"tooltip": "Signaled after Set Cascade Far Depth is invoked"
},
"details": {
"name": "SetCascadeFarDepth"
"name": "Set Cascade Far Depth"
},
"params": [
{
"typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}",
"details": {
"name": "Vector4"
"name": "Cascade Far Depth"
}
}
]
@@ -476,20 +499,20 @@
"key": "GetSplitAutomatic",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetSplitAutomatic"
"tooltip": "When signaled, this will invoke Get Split Automatic"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetSplitAutomatic is invoked"
"tooltip": "Signaled after Get Split Automatic is invoked"
},
"details": {
"name": "GetSplitAutomatic"
"name": "Get Split Automatic"
},
"results": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Split Automatic"
}
}
]
@@ -498,20 +521,20 @@
"key": "GetGroundHeight",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetGroundHeight"
"tooltip": "When signaled, this will invoke Get Ground Height"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetGroundHeight is invoked"
"tooltip": "Signaled after Get Ground Height is invoked"
},
"details": {
"name": "GetGroundHeight"
"name": "Get Ground Height"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Ground Height"
}
}
]
@@ -520,20 +543,20 @@
"key": "SetCascadeCount",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetCascadeCount"
"tooltip": "When signaled, this will invoke Set Cascade Count"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetCascadeCount is invoked"
"tooltip": "Signaled after Set Cascade Count is invoked"
},
"details": {
"name": "SetCascadeCount"
"name": "Set Cascade Count"
},
"params": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Cascade Count"
}
}
]
@@ -542,20 +565,20 @@
"key": "SetFilteringSampleCount",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetFilteringSampleCount"
"tooltip": "When signaled, this will invoke Set Filtering Sample Count"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetFilteringSampleCount is invoked"
"tooltip": "Signaled after Set Filtering Sample Count is invoked"
},
"details": {
"name": "SetFilteringSampleCount"
"name": "Set Filtering Sample Count"
},
"params": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Filtering Sample Count"
}
}
]
@@ -564,20 +587,20 @@
"key": "GetCascadeCount",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetCascadeCount"
"tooltip": "When signaled, this will invoke Get Cascade Count"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetCascadeCount is invoked"
"tooltip": "Signaled after Get Cascade Count is invoked"
},
"details": {
"name": "GetCascadeCount"
"name": "Get Cascade Count"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Cascade Count"
}
}
]
@@ -586,20 +609,42 @@
"key": "GetIntensity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetIntensity"
"tooltip": "When signaled, this will invoke Get Intensity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetIntensity is invoked"
"tooltip": "Signaled after Get Intensity is invoked"
},
"details": {
"name": "GetIntensity"
"name": "Get Intensity"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Intensity"
}
}
]
},
{
"key": "SetNormalShadowBias",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke Set Normal Shadow Bias"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after Set Normal Shadow Bias is invoked"
},
"details": {
"name": "Set Normal Shadow Bias"
},
"params": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "Normal Shadow Bias"
}
}
]
@@ -608,20 +653,20 @@
"key": "GetShadowmapSize",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetShadowmapSize"
"tooltip": "When signaled, this will invoke Get Shadowmap Size"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetShadowmapSize is invoked"
"tooltip": "Signaled after Get Shadowmap Size is invoked"
},
"details": {
"name": "GetShadowmapSize"
"name": "Get Shadowmap Size"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Shadowmap Size"
}
}
]
@@ -630,20 +675,20 @@
"key": "GetAngularDiameter",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetAngularDiameter"
"tooltip": "When signaled, this will invoke Get Angular Diameter"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetAngularDiameter is invoked"
"tooltip": "Signaled after Get Angular Diameter is invoked"
},
"details": {
"name": "GetAngularDiameter"
"name": "Get Angular Diameter"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Angular Diameter"
}
}
]
@@ -652,20 +697,20 @@
"key": "SetShadowFilterMethod",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetShadowFilterMethod"
"tooltip": "When signaled, this will invoke Set Shadow Filter Method"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetShadowFilterMethod is invoked"
"tooltip": "Signaled after Set Shadow Filter Method is invoked"
},
"details": {
"name": "SetShadowFilterMethod"
"name": "Set Shadow Filter Method"
},
"params": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
"name": "Shadow Filter Method"
}
}
]
@@ -674,20 +719,20 @@
"key": "SetShadowReceiverPlaneBiasEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetShadowReceiverPlaneBiasEnabled"
"tooltip": "When signaled, this will invoke Set Shadow Receiver Plane Bias Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetShadowReceiverPlaneBiasEnabled is invoked"
"tooltip": "Signaled after Set Shadow Receiver Plane Bias Enabled is invoked"
},
"details": {
"name": "SetShadowReceiverPlaneBiasEnabled"
"name": "Set Shadow Receiver Plane Bias Enabled"
},
"params": [
{
"typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}",
"details": {
"name": "bool"
"name": "Enabled"
}
}
]
@@ -696,20 +741,20 @@
"key": "GetSplitRatio",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetSplitRatio"
"tooltip": "When signaled, this will invoke Get Split Ratio"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetSplitRatio is invoked"
"tooltip": "Signaled after Get Split Ratio is invoked"
},
"details": {
"name": "GetSplitRatio"
"name": "Get Split Ratio"
},
"results": [
{
"typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}",
"details": {
"name": "float"
"name": "Split Ratio"
}
}
]
@@ -718,20 +763,20 @@
"key": "GetCascadeFarDepth",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetCascadeFarDepth"
"tooltip": "When signaled, this will invoke Get Cascade Far Depth"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetCascadeFarDepth is invoked"
"tooltip": "Signaled after Get Cascade Far Depth is invoked"
},
"details": {
"name": "GetCascadeFarDepth"
"name": "Get Cascade Far Depth"
},
"results": [
{
"typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}",
"details": {
"name": "Vector4"
"name": "Cascade Far Depth"
}
}
]
@@ -740,14 +785,14 @@
"key": "SetColor",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetColor"
"tooltip": "When signaled, this will invoke Set Color"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetColor is invoked"
"tooltip": "Signaled after Set Color is invoked"
},
"details": {
"name": "SetColor"
"name": "Set Color"
},
"params": [
{
@@ -5,21 +5,22 @@
"context": "EBusSender",
"variant": "",
"details": {
"name": "PhysicalSkyRequestBus"
"name": "Physical Sky",
"category": "Rendering"
},
"methods": [
{
"key": "SetSkyIntensity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetSkyIntensity"
"tooltip": "When signaled, this will invoke Set Sky Intensity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetSkyIntensity is invoked"
"tooltip": "Signaled after Set Sky Intensity is invoked"
},
"details": {
"name": "SetSkyIntensity"
"name": "Set Sky Intensity"
},
"params": [
{
@@ -34,14 +35,14 @@
"key": "SetSunIntensity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetSunIntensity"
"tooltip": "When signaled, this will invoke Set Sun Intensity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetSunIntensity is invoked"
"tooltip": "Signaled after Set Sun Intensity is invoked"
},
"details": {
"name": "SetSunIntensity"
"name": "Set Sun Intensity"
},
"params": [
{
@@ -56,14 +57,14 @@
"key": "GetSunIntensity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetSunIntensity"
"tooltip": "When signaled, this will invoke Get Sun Intensity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetSunIntensity is invoked"
"tooltip": "Signaled after Get Sun Intensity is invoked"
},
"details": {
"name": "GetSunIntensity"
"name": "Get Sun Intensity"
},
"results": [
{
@@ -78,14 +79,14 @@
"key": "GetSunRadiusFactor",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetSunRadiusFactor"
"tooltip": "When signaled, this will invoke Get Sun Radius Factor"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetSunRadiusFactor is invoked"
"tooltip": "Signaled after Get Sun Radius Factor is invoked"
},
"details": {
"name": "GetSunRadiusFactor"
"name": "Get Sun Radius Factor"
},
"results": [
{
@@ -100,14 +101,14 @@
"key": "SetSunRadiusFactor",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetSunRadiusFactor"
"tooltip": "When signaled, this will invoke Set Sun Radius Factor"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetSunRadiusFactor is invoked"
"tooltip": "Signaled after Set Sun Radius Factor is invoked"
},
"details": {
"name": "SetSunRadiusFactor"
"name": "Set Sun Radius Factor"
},
"params": [
{
@@ -122,14 +123,14 @@
"key": "GetTurbidity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetTurbidity"
"tooltip": "When signaled, this will invoke Get Turbidity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetTurbidity is invoked"
"tooltip": "Signaled after Get Turbidity is invoked"
},
"details": {
"name": "GetTurbidity"
"name": "Get Turbidity"
},
"results": [
{
@@ -144,14 +145,14 @@
"key": "GetSkyIntensity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetSkyIntensity"
"tooltip": "When signaled, this will invoke Get Sky Intensity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetSkyIntensity is invoked"
"tooltip": "Signaled after Get Sky Intensity is invoked"
},
"details": {
"name": "GetSkyIntensity"
"name": "Get Sky Intensity"
},
"results": [
{
@@ -166,14 +167,14 @@
"key": "SetTurbidity",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetTurbidity"
"tooltip": "When signaled, this will invoke Set Turbidity"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetTurbidity is invoked"
"tooltip": "Signaled after Set Turbidity is invoked"
},
"details": {
"name": "SetTurbidity"
"name": "Set Turbidity"
},
"params": [
{
@@ -5,21 +5,22 @@
"context": "EBusSender",
"variant": "",
"details": {
"name": "SkyBoxFogRequestBus"
"name": "Sky Box Fog",
"category": "Rendering"
},
"methods": [
{
"key": "GetBottomHeight",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetBottomHeight"
"tooltip": "When signaled, this will invoke Get Bottom Height"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetBottomHeight is invoked"
"tooltip": "Signaled after Get Bottom Height is invoked"
},
"details": {
"name": "GetBottomHeight"
"name": "Get Bottom Height"
},
"results": [
{
@@ -34,14 +35,14 @@
"key": "GetColor",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetColor"
"tooltip": "When signaled, this will invoke Get Color"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetColor is invoked"
"tooltip": "Signaled after Get Color is invoked"
},
"details": {
"name": "GetColor"
"name": "Get Color"
},
"results": [
{
@@ -56,14 +57,14 @@
"key": "SetBottomHeight",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetBottomHeight"
"tooltip": "When signaled, this will invoke Set Bottom Height"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetBottomHeight is invoked"
"tooltip": "Signaled after Set Bottom Height is invoked"
},
"details": {
"name": "SetBottomHeight"
"name": "Set Bottom Height"
},
"params": [
{
@@ -78,14 +79,14 @@
"key": "SetColor",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetColor"
"tooltip": "When signaled, this will invoke Set Color"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetColor is invoked"
"tooltip": "Signaled after Set Color is invoked"
},
"details": {
"name": "SetColor"
"name": "Set Color"
},
"params": [
{
@@ -100,14 +101,14 @@
"key": "GetTopHeight",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetTopHeight"
"tooltip": "When signaled, this will invoke Get Top Height"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetTopHeight is invoked"
"tooltip": "Signaled after Get Top Height is invoked"
},
"details": {
"name": "GetTopHeight"
"name": "Get Top Height"
},
"results": [
{
@@ -122,14 +123,14 @@
"key": "IsEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke IsEnabled"
"tooltip": "When signaled, this will invoke Is Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after IsEnabled is invoked"
"tooltip": "Signaled after Is Enabled is invoked"
},
"details": {
"name": "IsEnabled"
"name": "Is Enabled"
},
"results": [
{
@@ -144,14 +145,14 @@
"key": "SetTopHeight",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetTopHeight"
"tooltip": "When signaled, this will invoke Set Top Height"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetTopHeight is invoked"
"tooltip": "Signaled after Set Top Height is invoked"
},
"details": {
"name": "SetTopHeight"
"name": "Set Top Height"
},
"params": [
{
@@ -166,14 +167,14 @@
"key": "SetEnabled",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetEnabled"
"tooltip": "When signaled, this will invoke Set Enabled"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetEnabled is invoked"
"tooltip": "Signaled after Set Enabled is invoked"
},
"details": {
"name": "SetEnabled"
"name": "Set Enabled"
},
"params": [
{
@@ -5,21 +5,22 @@
"context": "EBusSender",
"variant": "",
"details": {
"name": "ViewportRequestBus"
"name": "Viewport",
"category": "Rendering"
},
"methods": [
{
"key": "SetCameraTransform",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetCameraTransform"
"tooltip": "When signaled, this will invoke Set Camera Transform"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetCameraTransform is invoked"
"tooltip": "Signaled after Set Camera Transform is invoked"
},
"details": {
"name": "SetCameraTransform"
"name": "Set Camera Transform"
},
"params": [
{
@@ -34,20 +35,20 @@
"key": "GetCameraProjectionMatrix",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetCameraProjectionMatrix"
"tooltip": "When signaled, this will invoke Get Camera Projection Matrix"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetCameraProjectionMatrix is invoked"
"tooltip": "Signaled after Get Camera Projection Matrix is invoked"
},
"details": {
"name": "GetCameraProjectionMatrix"
"name": "Get Camera Projection Matrix"
},
"results": [
{
"typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}",
"details": {
"name": "Matrix4x4"
"name": "Matrix 4x 4"
}
}
]
@@ -56,20 +57,20 @@
"key": "SetCameraViewMatrix",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetCameraViewMatrix"
"tooltip": "When signaled, this will invoke Set Camera View Matrix"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetCameraViewMatrix is invoked"
"tooltip": "Signaled after Set Camera View Matrix is invoked"
},
"details": {
"name": "SetCameraViewMatrix"
"name": "Set Camera View Matrix"
},
"params": [
{
"typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}",
"details": {
"name": "Matrix4x4"
"name": "Matrix 4x 4"
}
}
]
@@ -78,20 +79,20 @@
"key": "GetCameraViewMatrix",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetCameraViewMatrix"
"tooltip": "When signaled, this will invoke Get Camera View Matrix"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetCameraViewMatrix is invoked"
"tooltip": "Signaled after Get Camera View Matrix is invoked"
},
"details": {
"name": "GetCameraViewMatrix"
"name": "Get Camera View Matrix"
},
"results": [
{
"typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}",
"details": {
"name": "Matrix4x4"
"name": "Matrix 4x 4"
}
}
]
@@ -100,20 +101,20 @@
"key": "SetCameraProjectionMatrix",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke SetCameraProjectionMatrix"
"tooltip": "When signaled, this will invoke Set Camera Projection Matrix"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after SetCameraProjectionMatrix is invoked"
"tooltip": "Signaled after Set Camera Projection Matrix is invoked"
},
"details": {
"name": "SetCameraProjectionMatrix"
"name": "Set Camera Projection Matrix"
},
"params": [
{
"typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}",
"details": {
"name": "Matrix4x4"
"name": "Matrix 4x 4"
}
}
]
@@ -122,14 +123,14 @@
"key": "GetCameraTransform",
"entry": {
"name": "In",
"tooltip": "When signaled, this will invoke GetCameraTransform"
"tooltip": "When signaled, this will invoke Get Camera Transform"
},
"exit": {
"name": "Out",
"tooltip": "Signaled after GetCameraTransform is invoked"
"tooltip": "Signaled after Get Camera Transform is invoked"
},
"details": {
"name": "GetCameraTransform"
"name": "Get Camera Transform"
},
"results": [
{
@@ -1,28 +0,0 @@
{
"entries": [
{
"key": "ALPHA",
"context": "Constant",
"variant": "",
"details": {
"name": "ALPHA"
},
"methods": [
{
"key": "GetALPHA",
"details": {
"name": "GetALPHA"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
}
}
]
}
]
}
]
}
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Area Blender Component Type Id"
"name": "Area Blender Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Area Light Component Type Id"
"name": "Area Light Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Audio Obstruction Type_ Ignore"
"name": " Ignore",
"category": "Constants/Audio Obstruction"
},
"methods": [
{
"key": "GetAudioObstructionType_Ignore",
"details": {
"name": "Get Audio Obstruction Type_ Ignore"
"name": "Ignore"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Audio Obstruction Type_ Multi Ray"
"name": "Multi Ray",
"category": "Constants/Audio Obstruction"
},
"methods": [
{
"key": "GetAudioObstructionType_MultiRay",
"details": {
"name": "Get Audio Obstruction Type_ Multi Ray"
"name": "Multi Ray"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Audio Obstruction Type_ Single Ray"
"name": "Single Ray",
"category": "Constants/Audio Obstruction"
},
"methods": [
{
"key": "GetAudioObstructionType_SingleRay",
"details": {
"name": "Get Audio Obstruction Type_ Single Ray"
"name": "Single Ray"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Audio Preload Component Load Type_ Auto"
"name": "Load Type Auto",
"category": "Constants/Audio Preload"
},
"methods": [
{
"key": "GetAudioPreloadComponentLoadType_Auto",
"details": {
"name": "Get Audio Preload Component Load Type_ Auto"
"name": "Load Type Auto"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Audio Preload Component Load Type_ Manual"
"name": "Load Type Manual",
"category": "Constants/Audio Preload"
},
"methods": [
{
"key": "GetAudioPreloadComponentLoadType_Manual",
"details": {
"name": "Get Audio Preload Component Load Type_ Manual"
"name": "Load Type Manual"
},
"results": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Axis Aligned Box Shape Component Type Id"
"name": "Axis Aligned Box Shape Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -1,28 +0,0 @@
{
"entries": [
{
"key": "BRAVO",
"context": "Constant",
"variant": "",
"details": {
"name": "BRAVO"
},
"methods": [
{
"key": "GetBRAVO",
"details": {
"name": "GetBRAVO"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
}
}
]
}
]
}
]
}
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Dest"
"name": "Alpha Dest",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaDest",
"details": {
"name": "Get Blend Factor_ Alpha Dest"
"name": "Get Alpha Dest"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Dest Inverse"
"name": "Alpha Dest Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaDestInverse",
"details": {
"name": "Get Blend Factor_ Alpha Dest Inverse"
"name": "Get Alpha Dest Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Source"
"name": "Alpha Source",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaSource",
"key": "AlphaSource",
"details": {
"name": "Get Blend Factor_ Alpha Source"
"name": "Get Alpha Source"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Source 1"
"name": "Alpha Source 1",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaSource1",
"details": {
"name": "Get Blend Factor_ Alpha Source 1"
"name": "Get Alpha Source 1"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Source 1 Inverse"
"name": "Alpha Source 1 Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaSource1Inverse",
"details": {
"name": "Get Blend Factor_ Alpha Source 1 Inverse"
"name": "Get Alpha Source 1 Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Source Inverse"
"name": "Alpha Source Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaSourceInverse",
"details": {
"name": "Get Blend Factor_ Alpha Source Inverse"
"name": "Get Alpha Source Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Alpha Source Saturate"
"name": "Alpha Source Saturate",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_AlphaSourceSaturate",
"details": {
"name": "Get Blend Factor_ Alpha Source Saturate"
"name": "Get Alpha Source Saturate"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Color Dest"
"name": "Color Dest",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_ColorDest",
"details": {
"name": "Get Blend Factor_ Color Dest"
"name": "Get Color Dest"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Color Dest Inverse"
"name": "Color Dest Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_ColorDestInverse",
"details": {
"name": "Get Blend Factor_ Color Dest Inverse"
"name": "Get Color Dest Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Color Source"
"name": "Color Source",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_ColorSource",
"details": {
"name": "Get Blend Factor_ Color Source"
"name": "Get Color Source"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Color Source 1"
"name": "Color Source 1",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_ColorSource1",
"details": {
"name": "Get Blend Factor_ Color Source 1"
"name": "Get Color Source 1"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Color Source 1 Inverse"
"name": "Color Source 1 Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_ColorSource1Inverse",
"details": {
"name": "Get Blend Factor_ Color Source 1 Inverse"
"name": "Get Color Source 1 Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Color Source Inverse"
"name": "Color Source Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_ColorSourceInverse",
"details": {
"name": "Get Blend Factor_ Color Source Inverse"
"name": "Get Color Source Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Factor"
"name": "Factor",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_Factor",
"details": {
"name": "Get Blend Factor_ Factor"
"name": "Get Factor"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Factor Inverse"
"name": "Factor Inverse",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_FactorInverse",
"details": {
"name": "Get Blend Factor_ Factor Inverse"
"name": "Get Factor Inverse"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Invalid"
"name": "Invalid",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_Invalid",
"details": {
"name": "Get Blend Factor_ Invalid"
"name": "Get Invalid"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ One"
"name": "One",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_One",
"details": {
"name": "Get Blend Factor_ One"
"name": "Get One"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Factor_ Zero"
"name": "Zero",
"category": "Constants/Blend Factor"
},
"methods": [
{
"key": "GetBlendFactor_Zero",
"details": {
"name": "Get Blend Factor_ Zero"
"name": "Get Zero"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Op_ Add"
"name": "Add",
"category": "Constants/Blend Operation"
},
"methods": [
{
"key": "GetBlendOp_Add",
"details": {
"name": "Get Blend Op_ Add"
"name": "Get Add"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Op_ Invalid"
"name": "Invalid",
"category": "Constants/Blend Operation"
},
"methods": [
{
"key": "GetBlendOp_Invalid",
"details": {
"name": "Get Blend Op_ Invalid"
"name": "Get Invalid"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Op_ Maximum"
"name": "Maximum",
"category": "Constants/Blend Operation"
},
"methods": [
{
"key": "GetBlendOp_Maximum",
"details": {
"name": "Get Blend Op_ Maximum"
"name": "Get Maximum"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Op_ Minimum"
"name": "Minimum",
"category": "Constants/Blend Operation"
},
"methods": [
{
"key": "GetBlendOp_Minimum",
"key": "Minimum",
"details": {
"name": "Get Blend Op_ Minimum"
"name": "Get Minimum"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Op_ Subtract"
"name": "Subtract",
"category": "Constants/Blend Operation"
},
"methods": [
{
"key": "GetBlendOp_Subtract",
"details": {
"name": "Get Blend Op_ Subtract"
"name": "Get Subtract"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blend Op_ Subtract Reverse"
"name": "Subtract Reverse",
"category": "Constants/Blend Operation"
},
"methods": [
{
"key": "GetBlendOp_SubtractReverse",
"details": {
"name": "Get Blend Op_ Subtract Reverse"
"name": "Get Subtract Reverse"
},
"results": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Blocker Component Type Id"
"name": "Blocker Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Bloom Component Type Id"
"name": "Bloom Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Box Shape Component Type Id"
"name": "Box Shape Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -1,28 +0,0 @@
{
"entries": [
{
"key": "CHARLIE",
"context": "Constant",
"variant": "",
"details": {
"name": "CHARLIE"
},
"methods": [
{
"key": "GetCHARLIE",
"details": {
"name": "GetCHARLIE"
},
"results": [
{
"typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}",
"details": {
"name": "unsigned int"
}
}
]
}
]
}
]
}
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "CUBE"
"name": "Cube",
"category": "Constants/White Box"
},
"methods": [
{
"key": "GetCUBE",
"details": {
"name": "GetCUBE"
"name": "Cube"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "CYLINDER"
"name": "Cylinder",
"category": "Constants/White Box"
},
"methods": [
{
"key": "GetCYLINDER",
"details": {
"name": "GetCYLINDER"
"name": "Cylinder"
},
"results": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Capsule Shape Component Type Id"
"name": "Capsule Shape Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Constant Gradient Component Type Id"
"name": "Constant Gradient Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Cull Mode_ Back"
"name": "Back",
"category": "Constants/Cull Mode"
},
"methods": [
{
"key": "GetCullMode_Back",
"details": {
"name": "Get Cull Mode_ Back"
"name": "Get Back"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Cull Mode_ Front"
"name": "Front",
"category": "Constants/Cull Mode"
},
"methods": [
{
"key": "GetCullMode_Front",
"details": {
"name": "Get Cull Mode_ Front"
"name": "Get Front"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Cull Mode_ Invalid"
"name": "Invalid",
"category": "Constants/Cull Mode"
},
"methods": [
{
"key": "GetCullMode_Invalid",
"details": {
"name": "Get Cull Mode_ Invalid"
"name": "Get Invalid"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Cull Mode_ None"
"name": "None",
"category": "Constants/Cull Mode"
},
"methods": [
{
"key": "GetCullMode_None",
"details": {
"name": "Get Cull Mode_ None"
"name": "Get None"
},
"results": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Cylinder Shape Component Type Id"
"name": "Cylinder Shape Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Decal Component Type Id"
"name": "Decal Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Lod Override"
"name": "Default Lod Override",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Lod Type"
"name": "Default Lod Type",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Material Assignment"
"name": "Default Material Assignment",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Material Assignment Id"
"name": "Default Material Assignment Id",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Material Assignment Map"
"name": "Default Material Assignment Map",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Physics Scene Id"
"name": "Default Physics Scene Id",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Default Physics Scene Name"
"name": "Default Physics Scene Name",
"category": "Constants/Defaults"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Deferred Fog Component Type Id"
"name": "Deferred Fog Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Depth Of Field Component Type Id"
"name": "Depth Of Field Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Depth Write Mask_ All"
"name": "All",
"category": "Constants/Depth Write Mask"
},
"methods": [
{
"key": "GetDepthWriteMask_All",
"details": {
"name": "Get Depth Write Mask_ All"
"name": "All"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Depth Write Mask_ Invalid"
"name": "Invalid",
"category": "Constants/Depth Write Mask"
},
"methods": [
{
"key": "GetDepthWriteMask_Invalid",
"details": {
"name": "Get Depth Write Mask_ Invalid"
"name": "Invalid"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Depth Write Mask_ Zero"
"name": "Zero",
"category": "Constants/Depth Write Mask"
},
"methods": [
{
"key": "GetDepthWriteMask_Zero",
"details": {
"name": "Get Depth Write Mask_ Zero"
"name": "Zero"
},
"results": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Descriptor List Combiner Component Type Id"
"name": "Descriptor List Combiner Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Descriptor List Component Type Id"
"name": "Descriptor List Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Descriptor Weight Selector Component Type Id"
"name": "Descriptor Weight Selector Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Diffuse Global Illumination Component Type Id"
"name": "Diffuse Global Illumination Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Diffuse Probe Grid Component Type Id"
"name": "Diffuse Probe Grid Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Directional Light Component Type Id"
"name": "Directional Light Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Disk Shape Component Type Id"
"name": "Disk Shape Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,7 +5,8 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Display Mapper Component Type Id"
"name": "Display Mapper Component Type Id",
"category": "Constants/Editor"
},
"methods": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Display Settings_ Hide Helpers"
"name": "Hide Helpers",
"category": "Constants/Display Settings"
},
"methods": [
{
"key": "GetDisplaySettings_HideHelpers",
"details": {
"name": "Get Display Settings_ Hide Helpers"
"name": "Get Hide Helpers"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Display Settings_ Hide Links"
"name": "Hide Links",
"category": "Constants/Display Settings"
},
"methods": [
{
"key": "GetDisplaySettings_HideLinks",
"details": {
"name": "Get Display Settings_ Hide Links"
"name": "Get Hide Links"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Display Settings_ Hide Tracks"
"name": "Hide Tracks",
"category": "Constants/Display Settings"
},
"methods": [
{
"key": "GetDisplaySettings_HideTracks",
"details": {
"name": "Get Display Settings_ Hide Tracks"
"name": "Get Hide Tracks"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Display Settings_ No Collision"
"name": "No Collision",
"category": "Constants/Display Settings"
},
"methods": [
{
"key": "GetDisplaySettings_NoCollision",
"details": {
"name": "Get Display Settings_ No Collision"
"name": "Get No Collision"
},
"results": [
{
@@ -5,13 +5,14 @@
"context": "Constant",
"variant": "",
"details": {
"name": "Display Settings_ No Labels"
"name": "No Labels",
"category": "Constants/Display Settings"
},
"methods": [
{
"key": "GetDisplaySettings_NoLabels",
"details": {
"name": "Get Display Settings_ No Labels"
"name": "Get No Labels"
},
"results": [
{

Some files were not shown because too many files have changed in this diff Show More