diff --git a/addons/netfox.extras/plugin.cfg b/addons/netfox.extras/plugin.cfg index daa0baed..4f4e74ad 100644 --- a/addons/netfox.extras/plugin.cfg +++ b/addons/netfox.extras/plugin.cfg @@ -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" diff --git a/addons/netfox.extras/state-machine/rewindable-state-machine.gd b/addons/netfox.extras/state-machine/rewindable-state-machine.gd index 270a7633..02a99104 100644 --- a/addons/netfox.extras/state-machine/rewindable-state-machine.gd +++ b/addons/netfox.extras/state-machine/rewindable-state-machine.gd @@ -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. diff --git a/addons/netfox.internals/plugin.cfg b/addons/netfox.internals/plugin.cfg index 9e823208..c7d35c84 100644 --- a/addons/netfox.internals/plugin.cfg +++ b/addons/netfox.internals/plugin.cfg @@ -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" diff --git a/addons/netfox.noray/plugin.cfg b/addons/netfox.noray/plugin.cfg index 6ac02e08..8686a08c 100644 --- a/addons/netfox.noray/plugin.cfg +++ b/addons/netfox.noray/plugin.cfg @@ -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" diff --git a/addons/netfox/plugin.cfg b/addons/netfox/plugin.cfg index c620c9f9..3146e8c0 100644 --- a/addons/netfox/plugin.cfg +++ b/addons/netfox/plugin.cfg @@ -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" diff --git a/docs/netfox.extras/guides/rewindable-state-machine.md b/docs/netfox.extras/guides/rewindable-state-machine.md index e61f3e4a..77cd8b32 100644 --- a/docs/netfox.extras/guides/rewindable-state-machine.md +++ b/docs/netfox.extras/guides/rewindable-state-machine.md @@ -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