Add parameter names to RPC behavior context so users know what each parameter does. Also added tooltip, although script canvas isnt always showing it (I will create a separate bug)

monroegm-disable-blank-issue-2
Gene Walters 5 years ago
parent 965fced771
commit 618b7d12bb

@ -392,7 +392,8 @@ void {{ ClassName }}::Signal{{ UpperFirst(Property.attrib['Name']) }}({{ ', '.jo
} }
controller->{{ UpperFirst(Property.attrib['Name']) }}({{ ', '.join(paramNames) }}); controller->{{ UpperFirst(Property.attrib['Name']) }}({{ ', '.join(paramNames) }});
}) }, { { { "Source", "The Source containing the {{ ClassName }}Controller" }{% for paramName in paramNames %}, {"{{ paramName }}"}{% endfor %}}})
->Attribute(AZ::Script::Attributes::ToolTip, "{{Property.attrib['Description']}}")
{% endif %} {% endif %}
{% endcall %} {% endcall %}
{% endmacro %} {% endmacro %}

Loading…
Cancel
Save