-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Transform propagation after adding GlobalTransform
#9075
Labels
Comments
Shatur
added
C-Bug
An unexpected or incorrect behavior
S-Needs-Triage
This issue needs to be labelled
labels
Jul 8, 2023
Is there a reason you're not adding the |
Because of deserialization. I serialize and deserialze only necessary components and automatically insert complement ones like |
Selene-Amanita
added
A-Transform
Translations, rotations and scales
and removed
S-Needs-Triage
This issue needs to be labelled
labels
Jul 9, 2023
Opened #9081. |
github-merge-queue bot
pushed a commit
that referenced
this issue
Jul 10, 2023
# Objective `GlobalTransform` after insertion will be updated only on `Transform` or hierarchy change. Fixes #9075 ## Solution Update `GlobalTransform` after insertion too. --- ## Changelog - `GlobalTransform` is now updated not only on `Transform` or hierarchy change, but also on insertion.
ickshonpe
added a commit
to ickshonpe/bevy
that referenced
this issue
Jul 12, 2023
# Objective `GlobalTransform` after insertion will be updated only on `Transform` or hierarchy change. Fixes bevyengine#9075 ## Solution Update `GlobalTransform` after insertion too. --- ## Changelog - `GlobalTransform` is now updated not only on `Transform` or hierarchy change, but also on insertion.
cart
pushed a commit
that referenced
this issue
Aug 10, 2023
# Objective `GlobalTransform` after insertion will be updated only on `Transform` or hierarchy change. Fixes #9075 ## Solution Update `GlobalTransform` after insertion too. --- ## Changelog - `GlobalTransform` is now updated not only on `Transform` or hierarchy change, but also on insertion.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Bevy version
v0.10
What you did
I added an entity that have only
Transform
to hierarchy. And on the next update I addedGlobalTransform
.What went wrong
I would expect
GlobalTransform
to be updated withTransform
. But it's not. I think we should look not only forTransform
change, but also forGlobalTransform
add.The text was updated successfully, but these errors were encountered: