Skip to content

Commit

Permalink
Fix parallaxmapping asset missing on Android (#1085)
Browse files Browse the repository at this point in the history
[Why]
Asset name plane.gltf is not corrected in gradle copyTask on Android.

[How]
Correct the sample parallaxmapping's asset name plane.gltf in build.gradle.
  • Loading branch information
robotchaoX authored Nov 2, 2023
1 parent b20bca6 commit 88824b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/examples/parallaxmapping/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ task copyTask {
copy {
from rootProject.ext.assetPath + 'models'
into 'assets/models'
include 'planecd.gltf'
include 'plane.gltf'
}

copy {
Expand Down

0 comments on commit 88824b7

Please sign in to comment.