Search Issue Tracker
By Design
Votes
1
Found in
2021.2.0a20
2021.2.4f1
2022.1
Issue ID
1385257
Regression
Yes
Texture Compression settings on Android and WebGL Platforms are reset to default when building the project using a script
How to reproduce:
1. Open the attached "1385257_Repro.zip" project
2. Open the Build Settings (File->Build Settings...)
3. Switch to Android Platform
4. Set the Texture Compression to "PVRTC (PowerVR)
5. Build the project using the custom menu option (Top of Editor Build Test->Android)
Expected results: After the build finishes the Texture Compressions stays "PVRTC (PowerVR)"
Actual results: After the build finishes the Texture Compressions switches to "Use Player Settings"
Reproducible with: 2021.2.0a20, 2021.2.5f1, 2022.1.0b1
Not reproducible with: 2019.4.33f1, 2020.3.24f1, 2021.2.0a19
Note:
- Script used for building:
new BuildPlayerOptions
{
scenes = new string[] { "Assets/Scenes/SampleScene.unity" },
locationPathName = Application.dataPath + "/../Android_" + EditorUserBuildSettings.androidBuildSubtarget,
target = BuildTarget.Android,
options = BuildOptions.None
});
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Android] [Particle System] "ParticleSystem.GeometryJob" sometimes takes up to ~20 ms in the worker thread when initializing 5 Particle Systems
- Can't change OpenXR settings when switching Build Profiles
- L(a,b) expression in float fields has erratic behaviour when ordering due to using instanceID as an index
- InvalidOperationException is thrown when switching to a custom Debug Draw Mode in Scene View
- [Android][Vulkan] Skybox and Environment effects flicker in the Player when using the Vulkan Graphics API
Resolution Note (2022.2.X):
This is the expected result since 2021.2 as BuildPlayerOptions now have a subtarget field that must be specified if you want to build for a subtarget different than the default one:
new BuildPlayerOptions
{
scenes = new string[] { "Assets/Scenes/SampleScene.unity" },
locationPathName = Application.dataPath + "/../Android_" + EditorUserBuildSettings.androidBuildSubtarget,
target = BuildTarget.Android,
subtarget = (int)EditorUserBuildSettings.androidBuildSubtarget,
options = BuildOptions.None
});
Notice that when building using a script the active build target is switched to the target platform, and as the code is building for the default subtarget, that is why texture compression is set to the default one.