chore: storing version and changelog
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
## [4.0.0-alpha.183](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.183) (2022-05-11)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [4.0.0-alpha.182](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.182) (2022-05-11)
|
## [4.0.0-alpha.182](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.182) (2022-05-11)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -526,7 +526,7 @@ func perform_inputevent_on_object(
|
|||||||
# In case of an interrupted walk, we don't want to proceed.
|
# In case of an interrupted walk, we don't want to proceed.
|
||||||
if context == null:
|
if context == null:
|
||||||
return
|
return
|
||||||
|
|
||||||
destination_position = context.target_position
|
destination_position = context.target_position
|
||||||
dont_interact = context.dont_interact_on_arrival
|
dont_interact = context.dont_interact_on_arrival
|
||||||
|
|
||||||
|
|||||||
@@ -297,11 +297,11 @@ func interrupt(exceptions: PoolStringArray = []) -> void:
|
|||||||
for event in events_queue[channel_name]:
|
for event in events_queue[channel_name]:
|
||||||
if event.name in exceptions:
|
if event.name in exceptions:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
escoria.logger.debug("Interrupting queued event %s in channel %s..."
|
escoria.logger.debug("Interrupting queued event %s in channel %s..."
|
||||||
% [event.name, channel_name])
|
% [event.name, channel_name])
|
||||||
event.interrupt()
|
event.interrupt()
|
||||||
|
|
||||||
events_queue[channel_name].clear()
|
events_queue[channel_name].clear()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -365,7 +365,7 @@ func _perform_script_events(room: ESCRoom) -> void:
|
|||||||
)
|
)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
command_strings.append("%s 0.1" % _wait.get_command_name())
|
command_strings.append("%s 0.1" % _wait.get_command_name())
|
||||||
|
|
||||||
command_strings.append("%s ALL" % _accept_input.get_command_name())
|
command_strings.append("%s ALL" % _accept_input.get_command_name())
|
||||||
|
|||||||
Reference in New Issue
Block a user