Fix when ESCPlayer is not selectable or interactive manage click through

This commit is contained in:
Julian Murgia
2022-11-21 13:58:27 +01:00
parent 23b5de6ac2
commit a131efcfc2
21 changed files with 958 additions and 363 deletions

View File

@@ -25,6 +25,11 @@ _global_script_classes=[ {
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/anim.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraPushBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_push_block.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraPushCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_push.gd"
@@ -35,26 +40,51 @@ _global_script_classes=[ {
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_limits.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraSetPosBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_pos_block.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraSetPosCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_pos.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraSetTargetBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_target_block.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraSetTargetCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_target.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraSetZoomBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_zoom_block.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraSetZoomCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_zoom.gd"
}, {
"base": "ESCBaseCommand",
"class": "CameraSetZoomHeightBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_zoom_height_block.gd"
}, {
"base": "ESCBaseCommand",
"class": "CameraSetZoomHeightCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_set_zoom_height.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraShiftBlockCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_shift_block.gd"
}, {
"base": "ESCCameraBaseCommand",
"class": "CameraShiftCommand",
"language": "GDScript",
"path": "res://addons/escoria-core/game/core-scripts/esc/commands/camera_shift.gd"
@@ -603,12 +633,18 @@ _global_script_class_icons={
"AcceptInputCommand": "",
"AnimBlockCommand": "",
"AnimCommand": "",
"CameraPushBlockCommand": "",
"CameraPushCommand": "",
"CameraSetLimitsCommand": "",
"CameraSetPosBlockCommand": "",
"CameraSetPosCommand": "",
"CameraSetTargetBlockCommand": "",
"CameraSetTargetCommand": "",
"CameraSetZoomBlockCommand": "",
"CameraSetZoomCommand": "",
"CameraSetZoomHeightBlockCommand": "",
"CameraSetZoomHeightCommand": "",
"CameraShiftBlockCommand": "",
"CameraShiftCommand": "",
"ChangeSceneCommand": "",
"CustomCommand": "",