fixed android asset gradles

A few android examples were not loading the models needed
This commit is contained in:
sjfricke 2018-05-11 17:41:15 -05:00
parent 69dca89a02
commit 80536b5328
3 changed files with 8 additions and 2 deletions

View file

@ -69,7 +69,7 @@ task copyTask << {
copy { copy {
from '../../../data/models' from '../../../data/models'
into 'assets/models' into 'assets/models'
include 'torusknot.objdae' include 'torusknot.obj'
} }
copy { copy {

View file

@ -75,7 +75,7 @@ task copyTask << {
copy { copy {
from '../../../data/models' from '../../../data/models'
into 'assets/models' into 'assets/models'
include 'torusknot.objdae' include 'torusknot.obj'
} }
copy { copy {

View file

@ -78,6 +78,12 @@ task copyTask << {
include 'cube.obj' include 'cube.obj'
} }
copy {
from '../../../data/models'
into 'assets/models'
include 'venus.fbx'
}
copy { copy {
from '../../../data/textures' from '../../../data/textures'
into 'assets/textures' into 'assets/textures'