Fix debugutils load Shaders failed for Android (#1107)

[Why]
Sample debugutils's shaders path is incorrected in build.gradle for Android.
Missing shaders will cause sample debugutils crash.

[How]
Correct sample debugutils's shaders path for Android.
This commit is contained in:
robotchaoX 2024-02-20 00:18:56 +08:00 committed by GitHub
parent eda68d2421
commit f373ae9aa4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,8 +49,8 @@ task copyTask {
}
copy {
from rootProject.ext.shaderPath + 'glsl/debugUtils'
into 'assets/shaders/glsl/debugUtils'
from rootProject.ext.shaderPath + 'glsl/debugutils'
into 'assets/shaders/glsl/debugutils'
include '*.*'
}