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,63 @@
{
"entries": [
{
"key": "UiDropTargetNotificationBus",
"context": "EBusHandler",
"variant": "",
"details": {
"name": "UI Drop Target",
"category": "UI"
},
"methods": [
{
"key": "OnDropHoverStart",
"details": {
"name": "On Drop Hover Start",
"tooltip": "Executes when the focus starts to be on the drop target during dragging"
},
"params": [
{
"typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}",
"details": {
"name": "Dragged EntityID",
"tooltip": "The draggable element that is being dragged"
}
}
]
},
{
"key": "OnDropHoverEnd",
"details": {
"name": "On Drop Hover End",
"tooltip": "Executes when the focus stops being on the drop target during dragging"
},
"params": [
{
"typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}",
"details": {
"name": "Dragged EntityID",
"tooltip": "The draggable element that is being dragged"
}
}
]
},
{
"key": "OnDrop",
"details": {
"name": "On Drop",
"tooltip": "Executes when a draggable element is dropped on the drop target. Implement the game logic of what should happen on drag and drop here"
},
"params": [
{
"typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}",
"details": {
"name": "Dropped EntityID",
"tooltip": "The draggable element that was dropped"
}
}
]
}
]
}
]
}