Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/netfox.extras/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="netfox.extras"
description="Game-specific utilities for Netfox"
author="Tamas Galffy and contributors"
version="1.42.4"
version="1.42.5"
script="netfox-extras.gd"
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ class_name RewindableStateMachine
## are only triggered by gameplay code, and not by rollback reverting to an
## earlier state.
## [br][br]
## For this node to work correctly, a [RollbackSynchronizer] must be added as
## a sibling, and it must have the [RewindableStateMachine]'s [member state]
## property configured as a state property.
## For this node to work correctly, a [RollbackSynchronizer] must have the
## [RewindableStateMachine]'s [member state] property configured as a state property.
## [br][br]
## To implement states, extend the [RewindableState] class and add it as a child
## node.
Expand Down
2 changes: 1 addition & 1 deletion addons/netfox.internals/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="netfox.internals"
description="Shared internals for netfox addons"
author="Tamas Galffy and contributors"
version="1.42.4"
version="1.42.5"
script="plugin.gd"
2 changes: 1 addition & 1 deletion addons/netfox.noray/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="netfox.noray"
description="Bulletproof your connectivity with noray integration for netfox"
author="Tamas Galffy and contributors"
version="1.42.4"
version="1.42.5"
script="netfox-noray.gd"
2 changes: 1 addition & 1 deletion addons/netfox/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="netfox"
description="Shared internals for netfox addons"
author="Tamas Galffy and contributors"
version="1.42.4"
version="1.42.5"
script="netfox.gd"
2 changes: 1 addition & 1 deletion docs/netfox.extras/guides/rewindable-state-machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ conditions are satisfied, an editor warning will be displayed.
![RewindableStateMachine with
RollbackSynchronizer](../assets/rewindable-state-machine-rollback.png)

Notice the RollbackSynchronizer added as a sibling to the
Notice the RollbackSynchronizer added into the same scene as
RewindableStateMachine, and having its `state` property configured.

## Implementing states
Expand Down
Loading