Skip to content

Commit 998c9e2

Browse files
committed
chore: storing version and changelog
1 parent 7dcd1fd commit 998c9e2

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [4.0.0-alpha.228](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.228) (2022-11-09)
2+
3+
4+
### Bug Fixes
5+
6+
* unwanted error messages when opening a room in editor ([056db75](https://github.com/godot-escoria/escoria-demo-game/commit/056db7592996d35010cbf67dec5b14c8073437e6))
7+
8+
9+
110
## [4.0.0-alpha.227](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.227) (2022-11-08)
211

312

addons/escoria-core/game/core-scripts/esc_terrain.gd

+8-8
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ var _lightmap_data
5959
var _texture_in_update = false
6060

6161
# Logger instance
62-
onready var logger = Logger.ESCLoggerFile.new()
62+
onready var logger = Logger.ESCLoggerFile.new()
6363

6464
# Set a reference to the active navigation polygon, register to Escoria
6565
# and update the texture
6666
func _ready():
6767
connect("child_entered_tree", self, "_check_multiple_enabled_navpolys")
6868
connect("child_exiting_tree", self, "_check_multiple_enabled_navpolys", [true])
69-
69+
7070
_check_multiple_enabled_navpolys()
7171
if !Engine.is_editor_hint():
7272
escoria.room_terrain = self
@@ -76,12 +76,12 @@ func _ready():
7676
# Checks whether multiple navigation polygons are enabled.
7777
# Shows a warning in the terminal if this happens.
7878
# TODO: change this "simple" console log for an editor warning
79-
# by overriding Node._get_configuration_warning() after we get rid of
80-
# deprecated Navigation2D.
79+
# by overriding Node._get_configuration_warning() after we get rid of
80+
# deprecated Navigation2D.
8181
#
8282
# #### Parameters
8383
#
84-
# - node: if this method is triggered by child_entered_tree or
84+
# - node: if this method is triggered by child_entered_tree or
8585
# child_exited_tree signals, parameter is the added node.
8686
func _check_multiple_enabled_navpolys(node: Node = null, is_exiting: bool = false) -> void:
8787
var navigation_enabled_found = false
@@ -90,7 +90,7 @@ func _check_multiple_enabled_navpolys(node: Node = null, is_exiting: bool = fals
9090
and node is NavigationPolygonInstance \
9191
and node.enabled:
9292
navigation_enabled_found = true
93-
93+
9494
for n in get_children():
9595
if is_exiting and n == node:
9696
continue
@@ -112,8 +112,8 @@ func _check_multiple_enabled_navpolys(node: Node = null, is_exiting: bool = fals
112112
else:
113113
navigation_enabled_found = true
114114
current_active_navigation_instance = n
115-
116-
115+
116+
117117
# Return the Color of the lightmap pixel for the specified position
118118
#
119119
# #### Parameters

0 commit comments

Comments
 (0)