Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 463
fix: Prevent UseUnreliableDeltas from being used with SwitchTransformSpaceWhenParented#3875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
6efc6395406e2e80a2f2154e40875446a6ea35d977778fdfd5c580ec14230802bf919ccb21d19594752cFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -75,6 +75,9 @@ The following NetworkTransform properties can cause a full state update when cha | ||||||
| - __Use Quaternion Compression__ | ||||||
| - __Use Half Float Precision__ | ||||||
| > [!NOTE] | ||||||
| > **UseUnreliableDeltas** cannot be enabled if **SwitchTransformSpaceWhenParented** is enabled since **SwitchTransformSpaceWhenParented** requires deltas to be sent reliably. | ||||||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
| ||||||
| ### Axis to Synchronize | ||||||
|  | ||||||
| @@ -180,6 +183,7 @@ To resolve this issue, you can enable the __Switch Transform Space When Parented | ||||||
| Things to consider when using __Switch Transform Space When Parented__: | ||||||
| - This property is synchronized by the authority instance. If you disable it on the authority instance then it will synchronize this adjustment on all non-authority instances. | ||||||
| - This property cannot be enabled when **UseUnreliableDeltas** is enabled as it requires deltas to be sent reliably. | ||||||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
| ||||||
| - When using __Switch Transform Space When Parented__, it's best to not make adjustments to the __NetworkTransform.InLocalSpace__ field and let the NetworkTransform handle this for you. | ||||||
| - While you can still change __In Local Space__ directly via script while __Switch Transform Space When Parented__ is enabled, this could impact the end results. It is recommended to not adjust __In Local Space__ when __Switch Transform Space When Parented__ is enabled. | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.