chore: storing version and changelog

This commit is contained in:
StraToN
2022-03-10 22:05:52 +00:00
parent 0a45140fad
commit a20932a8e4
21 changed files with 36 additions and 32 deletions

View File

@@ -1,3 +1,7 @@
## [4.0.0-alpha.130](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.130) (2022-03-10)
## [4.0.0-alpha.129](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.129) (2022-03-10) ## [4.0.0-alpha.129](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.129) (2022-03-10)

View File

@@ -13,7 +13,7 @@
# #
# **Warning**: `SKIP` and `NONE` also disable autosaves. # **Warning**: `SKIP` and `NONE` also disable autosaves.
# #
# **Warning**: The type of user input accepted will persist even after the # **Warning**: The type of user input accepted will persist even after the
# current event has ended. Remember to reset the input type at the end of # current event has ended. Remember to reset the input type at the end of
# cut-scenes! # cut-scenes!
# #

View File

@@ -1,7 +1,7 @@
# `anim object name [reverse]` # `anim object name [reverse]`
# #
# Executes the animation specified in "name" on "object" without blocking. # Executes the animation specified in "name" on "object" without blocking.
# The next command in the event will be executed immediately after the # The next command in the event will be executed immediately after the
# animation is started. # animation is started.
# #
# **Parameters** # **Parameters**

View File

@@ -1,8 +1,8 @@
# `anim_block object name [reverse]` # `anim_block object name [reverse]`
# #
# Executes the animation specified in "name" on "object" while blocking other # Executes the animation specified in "name" on "object" while blocking other
# events from starting. # events from starting.
# The next command in the event will be executed when the animation is # The next command in the event will be executed when the animation is
# finished playing. # finished playing.
# #
# **Parameters** # **Parameters**

View File

@@ -1,8 +1,8 @@
# `camera_push target [time] [type]` # `camera_push target [time] [type]`
# #
# Pushes (moves) the camera so it points at a specific `target`. If the camera # Pushes (moves) the camera so it points at a specific `target`. If the camera
# was following a target (like the player) previously, it will no longer follow # was following a target (like the player) previously, it will no longer follow
# this target. # this target.
# #
# **Parameters** # **Parameters**
# #

View File

@@ -1,6 +1,6 @@
# `camera_set_limits camlimits_id` # `camera_set_limits camlimits_id`
# #
# Limits the current camera's movement to a limit defined in the `ESCRoom`'s # Limits the current camera's movement to a limit defined in the `ESCRoom`'s
# definition. A limit is defined as an upper-left (x, y) coordinate, a width # definition. A limit is defined as an upper-left (x, y) coordinate, a width
# and a height that the camera must stay within. Multiple limits can be # and a height that the camera must stay within. Multiple limits can be
# defined for a room, allowing for new areas to be seen once they have # defined for a room, allowing for new areas to be seen once they have

View File

@@ -6,7 +6,7 @@
# #
# **Parameters** # **Parameters**
# #
# - *time*: Number of seconds the transition should take to move the camera # - *time*: Number of seconds the transition should take to move the camera
# to follow `object` # to follow `object`
# - *object*: Global ID of the target object # - *object*: Global ID of the target object
# #

View File

@@ -1,8 +1,8 @@
# `camera_set_zoom magnitude [time]` # `camera_set_zoom magnitude [time]`
# #
# Zooms the camera in/out to the desired `magnitude`. Values larger than '1' zoom # Zooms the camera in/out to the desired `magnitude`. Values larger than '1' zoom
# the camera out while smaller values zoom in. These values are relative to the # the camera out while smaller values zoom in. These values are relative to the
# default zoom value of '1', not the current value. As such, while using a value # default zoom value of '1', not the current value. As such, while using a value
# of '0.5' would double the size of the graphics, running the same command again # of '0.5' would double the size of the graphics, running the same command again
# would result in no change. The zoom will happen over the given time period. # would result in no change. The zoom will happen over the given time period.
# #

View File

@@ -1,6 +1,6 @@
# `camera_shift x y [time] [type]` # `camera_shift x y [time] [type]`
# #
# Shifts the camera by the given horizontal and vertical amounts relative to the # Shifts the camera by the given horizontal and vertical amounts relative to the
# current location. # current location.
# #
# **Parameters** # **Parameters**

View File

@@ -1,7 +1,7 @@
# `change_scene path [enable_automatic_transition] [run_events]` # `change_scene path [enable_automatic_transition] [run_events]`
# #
# Switches the game from the current scene to another scene. Use this to move # Switches the game from the current scene to another scene. Use this to move
# the player to a new room when they walk through an unlocked door, for # the player to a new room when they walk through an unlocked door, for
# example. # example.
# #
# **Parameters** # **Parameters**

View File

@@ -1,6 +1,6 @@
# `custom object node func_name [params]` # `custom object node func_name [params]`
# #
# #
# Executes the specified Godot function. This function must be in a script # Executes the specified Godot function. This function must be in a script
# attached to a child node of a registered `ESCitem`. # attached to a child node of a registered `ESCitem`.
# #

View File

@@ -1,7 +1,7 @@
# `enable_terrain node_name` # `enable_terrain node_name`
# #
# Enables the `ESCTerrain`'s `NavigationPolygonInstance` specified by the given # Enables the `ESCTerrain`'s `NavigationPolygonInstance` specified by the given
# node name. It will also disable the previously-activated # node name. It will also disable the previously-activated
# `NavigationPolygonInstance`. # `NavigationPolygonInstance`.
# Use this to change where the player can walk, allowing them to walk into the # Use this to change where the player can walk, allowing them to walk into the
# next room once a door has been opened, for example. # next room once a door has been opened, for example.

View File

@@ -2,13 +2,13 @@
# #
# Hides either the main menu or the pause menu. The enable_automatic_transition # Hides either the main menu or the pause menu. The enable_automatic_transition
# parameter can be used to specify if Escoria manages the graphical transition # parameter can be used to specify if Escoria manages the graphical transition
# for you or not. # for you or not.
# Setting `enable_automatic_transition` to false allows you to manage the # Setting `enable_automatic_transition` to false allows you to manage the
# transition effect for your room as it transitions in and out. Place a # transition effect for your room as it transitions in and out. Place a
# `transition` command in the room's `setup` event to manage the look of the # `transition` command in the room's `setup` event to manage the look of the
# transition in, and in the room's `exit_scene` event to manage the look of the # transition in, and in the room's `exit_scene` event to manage the look of the
# transition out. # transition out.
# #
# **Parameters** # **Parameters**
# #
# - *menu_type*: Which menu to hide. Can be either `main` or `pause` (default: `main`) # - *menu_type*: Which menu to hide. Can be either `main` or `pause` (default: `main`)

View File

@@ -1,7 +1,7 @@
# `inventory_add item` # `inventory_add item`
# #
# Adds an item to the inventory. If the player is picking up an object, you may # Adds an item to the inventory. If the player is picking up an object, you may
# want to use this command in conjunction with the `set_active` command so that # want to use this command in conjunction with the `set_active` command so that
# the object 'disappears' from the scene as it's added to the inventory. # the object 'disappears' from the scene as it's added to the inventory.
# #
# **Parameters** # **Parameters**

View File

@@ -1,9 +1,9 @@
# `show_menu menu_type [enable_automatic_transition]` # `show_menu menu_type [enable_automatic_transition]`
# #
# Shows either the main menu or the pause menu. The enable_automatic_transition # Shows either the main menu or the pause menu. The enable_automatic_transition
# parameter can be used to specify if Escoria manages the graphical transition to # parameter can be used to specify if Escoria manages the graphical transition to
# the menu or not. If set to false, you can manage the transition yourself # the menu or not. If set to false, you can manage the transition yourself
# instead (if you want to change the transition type from the default for # instead (if you want to change the transition type from the default for
# example) using the `transition` command. # example) using the `transition` command.
# #
# **Parameters** # **Parameters**

View File

@@ -5,7 +5,7 @@
# #
# - *object*: Global ID of the object to move # - *object*: Global ID of the object to move
# - *target*: Global ID of the target object # - *target*: Global ID of the target object
# - *speed*: The speed at which to slide in pixels per second (will default to # - *speed*: The speed at which to slide in pixels per second (will default to
# the speed configured on the `object`) # the speed configured on the `object`)
# #
# **Warning** This command does not respect the room's navigation polygons, so # **Warning** This command does not respect the room's navigation polygons, so
@@ -56,9 +56,9 @@ func validate(arguments: Array):
# #
# - *source*: The item to slide # - *source*: The item to slide
# - *destination*: The destination item to slide to # - *destination*: The destination item to slide to
# - *speed*: The speed at which to slide in pixels per second (will default to # - *speed*: The speed at which to slide in pixels per second (will default to
# the speed configured on the `object`) # the speed configured on the `object`)
# #
# #
# **Returns** The generated (and started) tween # **Returns** The generated (and started) tween
func _slide_object( func _slide_object(

View File

@@ -5,7 +5,7 @@
# #
# - *object*: Global ID of the object to move # - *object*: Global ID of the object to move
# - *target*: Global ID of the target object # - *target*: Global ID of the target object
# - *speed*: The speed at which to slide in pixels per second (will default to # - *speed*: The speed at which to slide in pixels per second (will default to
# the speed configured on the `object`) # the speed configured on the `object`)
# #
# **Warning** This command does not respect the room's navigation polygons, so # **Warning** This command does not respect the room's navigation polygons, so

View File

@@ -5,7 +5,7 @@
# **Parameters** # **Parameters**
# #
# - *object*: Global ID of the object to move # - *object*: Global ID of the object to move
# - *target*: Global ID of the object to use as the destination coordinates # - *target*: Global ID of the object to use as the destination coordinates
# for `object` # for `object`
# #
# @ESC # @ESC

View File

@@ -3,7 +3,7 @@
# Turns `object` to face another object. # Turns `object` to face another object.
# #
# Unlike movement commands, `turn_to` will not automatically reference an # Unlike movement commands, `turn_to` will not automatically reference an
# `ESCLocation` that is a child of an `ESCItem.` # `ESCLocation` that is a child of an `ESCItem.`
# To turn towards an `ESCLocation` that is a child of an `ESCItem`, give the # To turn towards an `ESCLocation` that is a child of an `ESCItem`, give the
# `ESCLocation` a `Global ID` and use this value as the `object_to_face` # `ESCLocation` a `Global ID` and use this value as the `object_to_face`
# parameter. # parameter.

View File

@@ -1,13 +1,13 @@
# `walk object target [speed]` # `walk object target [speed]`
# #
# Moves the specified `ESCPlayer` or movable `ESCItem` to `target` # Moves the specified `ESCPlayer` or movable `ESCItem` to `target`
# while playing the `object`'s walking animation. This command is non-blocking. # while playing the `object`'s walking animation. This command is non-blocking.
# #
# **Parameters** # **Parameters**
# #
# - *object*: Global ID of the object to move # - *object*: Global ID of the object to move
# - *target*: Global ID of the target object # - *target*: Global ID of the target object
# - *speed*: The speed the `object` will walk in pixels per second (will # - *speed*: The speed the `object` will walk in pixels per second (will
# default to the speed configured on the `object`) # default to the speed configured on the `object`)
# #
# @ESC # @ESC

View File

@@ -7,7 +7,7 @@
# #
# - *object*: Global ID of the object to move # - *object*: Global ID of the object to move
# - *target*: Global ID of the target object # - *target*: Global ID of the target object
# - *speed*: The speed the `object` will walk in pixels per second (will # - *speed*: The speed the `object` will walk in pixels per second (will
# default to the speed configured on the `object`) # default to the speed configured on the `object`)
# #
# @ESC # @ESC