mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-11-24 08:28:16 -05:00
67907db0f9
I think this will be more clear to future devs
18 lines
445 B
Groovy
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",
|
|
]
|
|
}
|
|
}
|