Releases: Pyxus/fray
v1.0.1
v1.0.0
Added
- Added
ignore_indistinct_inputs
property toSequenceAnalyzer
. - Added
get_match_path()
method toSequenceAnalyzer
.
Changed
- Changed state machine 'go_to' functions to 'goto'.
- Refactored input filtration.
FrayInputEvent
filtered
property is now replaced byis_distinct
. - Renamed
SequencePath
add()
method tothen()
. - Changed
CombatStateMachine
input buffer from buffering states to only buffering inputs which go to the next state when allowed.
Removed
- Removed
match_path
parameter fromSequenceAnalyzer
match_found
signal.
Fixed
- Fixed global transitions not being reachable.
v1.0.0-alpha.4
Added
-
Added
device_connection_changed
signal toFrayInput
-
Added
Controller
node to input module. -
Added animation state machine to state module
Changed
-
Completely reworked state management. The state module now includes a generic hiearchical state machine which is accessible to the user.
-
Renamed module from 'state_management' to 'state'.
-
Input binds can now implement a
get_strength()
method. -
Virtual device can now set strength in the
press()
method.
Fixed
-
Fixed inability to load plugin due to
VirtualDevice
referencingFrayInput
singleton. -
Fixed inability to use
FrayInput.get_strength()
with virtual devices. The method now checks the strength stored in input state instead of directly checking Godot'sInput
singleton.
v1.0.0-alpha.3
Added
-
Added new combination builders to
ComplexInputFactory
class. -
Added new InputBindFrayAction. This allows you to create a bind using simple binds in a way that mimic's Godot's actions.
-
Added new class icons.
-
Added "situation_changed" signal on
CombatStateMachine
. -
Added ability to set combat state instance in
CombatSituationBuilder
. -
Added
active_hitboxes
flag toHitState2D
andHitState3D
. -
Added ability to create virtual devices in
FrayInput
singleton. -
Added
is_any_pressed()
method toFrayInput
singleton. -
Added
is_device_connected()
method toFrayInput
singleton. -
Added ability to remove binds and complex inputs from
FrayInputList
.
Changed
-
Updated hit detection system.
-
Renamed 'hit_detection' folder to more general 'collision'.
-
Replaced individual module pseudo-namespaces with 1 namespace. Now instead of
FrayInputNS
you would typeFray.Input
. -
Most input binds now inherit from new InputBindSimple type.
-
Renamed
CombatGraph
toCombatStateMachine
. -
Renamed
HitStateSwitcher
toHitStateManager
. -
Exposed
add_state
method inCombatSituationBuilder
. -
Updated state machine library to be more flexible. States now have new 'enter', 'process', and 'exit' virtual methods that are invokved by the state machine.
-
HitboxAttributes'
can_detect
method now takes attribute instead of hitbox. -
The
CombatStateMachine
will now default to using the first added situation. -
Renamed
FrayInputList
back toFrayInputMap
to mirror Godot's naming
Removed
-
Removed push box. There will no longer be a default push box implementation, users can create their own depending on their collision set up.
-
Removed
CombatGraphData
class. -
Removed
state_changed
signal onCombatStateMachine
. -
Removed
current_state
proprety fromHitStateManager2D
andHitStateManager3D
. State will now be activated when active hitboxes are set.
Fixed
-
InputBindJoyAxis not reading axis correctly.
-
Fixed 3d nodes extending
Node2D
instead ofSpatial
. -
Fixed lack of null checks on
FrayInput
methods.
v1.0.0-alpha.2
Fixed
- Memory leaks related to inner class cyclic dependency and cyclic references in complex input.
v1.0.0-alpha
Added
-
Added
CombatSituationBuilder
to make constructing combat situations in code easier. -
Added
CombatGraphData
to hold all situation state machines associated with a name. -
Added
ComplexInput
to replace old 'special' inputs. -
Added
ComplexInputFactory
to make constructing complex inputs in code easier. -
Added support for charged inputs through the updated
SequenceAnalyzer
. This allows for an input sequence to require that the first button in the sequence be held for a certain amount of time in order to satisfy the sequence. -
Added support for negative edge through the updated
SequenceAnalyzer
. This optionally allows for the release of a button to satisfy the last input in a sequence.
Changed
-
Updated the doc comments of several classes.
-
Updated
FrayInputEvent
to inlcude more information on an input's state such as the frame at which a press occured. Additionally added helper methods to calculate certain things such as the how long an input was held. -
Replaced combination and conditional inputs with component based alternative reffered to as a
ComplexInput
. The previous system allowed for inputs to reference other inputs which could result in cyclic dependencies. Complex inputs only make reference to input binds which are atomic. -
Removed 'expression' and 'node_path' property from
EvaluatedCondition
class. They will be reimplemented in a later version. -
Renamed all input binds classes from
(NameHere)InputBind
toInputBind(NameHere)
. -
Changed
CombatGraph
to work with newCombatGraphData
class rather than directly setting combat situation. -
Changed
SequenceAnalyzer
. The previouse SequenceAnalyzerTree implementation was redesigned and merged with theSequenceAnalyzer
class. -
Changed 'state' folder to 'state_management'.
-
Changed
FrayCombatState
namespace toFrayStateMgmt
. -
Renamed
SequenceCollection
toSequenceList
. -
Renamed
Sequence
toSequecnePath
. -
Renamed
FrayInputMap
singleton toFrayInputList
.
Fixed
EvaluatedCondition
's string condition not being evaluated.
Deprecated
- All scripts related to hit detection are pending redesign.