scratch-flash/config.groovy
Chris Willis-Ford 67907db0f9 Use target=10.2 instead of variant=Old
I think this will be more clear to future devs
2015-07-31 12:39:17 -07:00

18 lines
445 B
Groovy

environments {
'11.6' {
output = 'Scratch'
playerVersion = '11.6'
additionalCompilerOptions = [
"-swf-version=19",
"-define+=SCRATCH::allow3d,true",
]
}
'10.2' {
output = 'ScratchFor10.2'
playerVersion = '10.2'
additionalCompilerOptions = [
"-swf-version=11",
"-define+=SCRATCH::allow3d,false",
]
}
}