Skip to content

Commit

Permalink
Fix debugutils load Shaders failed for Android (#1107)
Browse files Browse the repository at this point in the history
[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.
  • Loading branch information
robotchaoX authored Feb 19, 2024
1 parent eda68d2 commit f373ae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/examples/debugutils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 '*.*'
}

Expand Down

0 comments on commit f373ae9

Please sign in to comment.