Fix parallaxmapping asset missing on Android (#1085)

[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.
This commit is contained in:
robotchaoX 2023-11-03 04:13:21 +08:00 committed by GitHub
parent b20bca6201
commit 88824b7c8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ task copyTask {
copy { copy {
from rootProject.ext.assetPath + 'models' from rootProject.ext.assetPath + 'models'
into 'assets/models' into 'assets/models'
include 'planecd.gltf' include 'plane.gltf'
} }
copy { copy {