Merge branch 'main' into carlitosan-parser-fixes

This commit is contained in:
chcurran
2021-04-22 16:15:54 -07:00
475 changed files with 2367 additions and 3573 deletions
@@ -388,9 +388,8 @@ namespace ScriptCanvas
{
AZ::ScriptCanvasAttributes::HiddenIndices uniqueIdIndex = { 0 };
auto builder = behaviorContext->Class<EventSender>("Unit Testing")
->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common)
;
auto builder = behaviorContext->Class<EventSender>("Unit Testing");
builder->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common);
builder->Method("Add Failure", &EventSender::AddFailure, { { {"", "", behaviorContext->MakeDefaultValue(UniqueId)}, {"Report", "additional notes for the test report"} } })
->Attribute(AZ::ScriptCanvasAttributes::HiddenParameterIndex, uniqueIdIndex)