Script Canvas, replace the text replacement system to a JSON file based one (#5228)

It is now possible to right click on nodes on the node palette to navigate to the file that holds the text data for any given node, this way it is easy to update and improve the naming of titles, subtitles, categories, tool tips and slots.
This commit is contained in:
Luis Sempé
2021-11-11 11:53:51 -08:00
committed by GitHub
parent 9d93282e42
commit 9e2a3226fd
1382 changed files with 209123 additions and 1515 deletions
@@ -0,0 +1,68 @@
{
"entries": [
{
"key": "{8481E892-DE37-4CCF-86AA-E4770DE90643}",
"context": "ScriptCanvas::Node",
"variant": "",
"details": {
"name": "Contains String",
"category": "String",
"tooltip": "Checks if a string contains an instance of a specified string, if true, it returns the index to the first instance matched.",
"subtitle": "String"
},
"slots": [
{
"key": "DataInput_Source",
"details": {
"name": "Source"
}
},
{
"key": "DataInput_Pattern",
"details": {
"name": "Pattern"
}
},
{
"key": "DataInput_Search From End",
"details": {
"name": "Search From End"
}
},
{
"key": "DataInput_Case Sensitive",
"details": {
"name": "Case Sensitive"
}
},
{
"key": "DataOutput_Index",
"details": {
"name": "Index"
}
},
{
"key": "Input_In",
"details": {
"name": "In",
"tooltip": "Input signal"
}
},
{
"key": "Output_True",
"details": {
"name": "True",
"tooltip": "The string contains the provided pattern."
}
},
{
"key": "Output_False",
"details": {
"name": "False",
"tooltip": "The string did not contain the provided pattern."
}
}
]
}
]
}