-
-
Notifications
You must be signed in to change notification settings - Fork 21.2k
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
Reimport file when .import changes #84974
Conversation
@KoBeWi , thanks for looking into this! I was unaware of your attempt, and created #85067 (for 3.x). The approaches are certainly different: here the fix is about the modification time of files. Mine is more potentially disruptive (modifies the format of the There's also the possibility that the fixes need to be different for each major version, due to different root causes. |
Rebased and still works. |
Thanks! |
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
This is disabling the logic added in godotengine#84974 which caused godotengine#94416. That issue still needs to be debugged further, but this works around the regression and should have minimal usability impact on Android.
Fixes #60730
Editor was already detecting that
.import
file has changed, but_test_for_reimport()
which triggers the actual reimport did not check that.Might need some testing.