feat: Optimizes animation commands (#446)

Co-authored-by: Dennis Ploeger <develop@dieploegers.de>
This commit is contained in:
Dennis Ploeger
2021-11-18 20:01:03 +01:00
committed by GitHub
parent 294fc72840
commit c9a6f802c7
5 changed files with 26 additions and 14 deletions

View File

@@ -15,6 +15,11 @@ _global_script_classes=[ {
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/accept_input.gd"
}, {
"base": "ESCBaseCommand",
"class": "AnimBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/anim_block.gd"
}, {
"base": "ESCBaseCommand",
"class": "AnimCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/anim.gd"
@@ -65,11 +70,6 @@ _global_script_classes=[ {
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/custom.gd"
}, {
"base": "ESCBaseCommand",
"class": "CutSceneCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/cut_scene.gd"
}, {
"base": "ESCBaseCommand",
"class": "DebugCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/debug.gd"
@@ -536,6 +536,7 @@ _global_script_classes=[ {
} ]
_global_script_class_icons={
"AcceptInputCommand": "",
"AnimBlockCommand": "",
"AnimCommand": "",
"CameraPushCommand": "",
"CameraSetLimitsCommand": "",
@@ -546,7 +547,6 @@ _global_script_class_icons={
"CameraShiftCommand": "",
"ChangeSceneCommand": "",
"CustomCommand": "",
"CutSceneCommand": "",
"DebugCommand": "",
"DecGlobalCommand": "",
"ESCActionManager": "",