File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ plugins {
2020ext {
2121 joltFork = ' stephengold'
2222 joltTag = ' sg260518'
23- downloadedHairStraightZip = " downloads/wStraightHair.zip"
23+ downloadedHairStraightZip = ' downloads/wStraightHair.zip'
2424 downloadedJoltZip = " downloads/JoltPhysics-${ joltTag} .zip"
2525 downloadedVhacdZip = ' downloads/v-hacd-4.1.0.zip'
2626
@@ -653,8 +653,8 @@ tasks.withType(Sign).configureEach {
653653// Register tasks to download ZIP archives:
654654
655655tasks. register(' downloadHairStraightZip' , Download ) {
656- // src " https://www.cemyuksel.com/research/hairmodels/wStraight.zip"
657- src " https://raw.githubusercontent.com/stephengold/hair-model-files/refs/heads/master/wStraight.zip"
656+ // src ' https://www.cemyuksel.com/research/hairmodels/wStraight.zip'
657+ src ' https://raw.githubusercontent.com/stephengold/hair-model-files/refs/heads/master/wStraight.zip'
658658 dest file(downloadedHairStraightZip)
659659 overwrite false
660660}
@@ -674,7 +674,7 @@ tasks.register('downloadVhacdZip', Download) {
674674tasks. register(' unpackHairStraight' , Copy ) {
675675 dependsOn(' downloadHairStraightZip' , ' unpackJoltAssets' )
676676 from (zipTree(downloadedHairStraightZip)) {
677- include " wStraight.hair"
677+ include ' wStraight.hair'
678678 }
679679 into layout. projectDirectory. dir(' Assets' )
680680}
You can’t perform that action at this time.
0 commit comments