mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-28 22:30:40 -04:00
Flip sort order of sensing object menu in video motion extension. Resolves GH-1074
This commit is contained in:
parent
717ac46bbd
commit
ced4de8995
1 changed files with 5 additions and 5 deletions
|
@ -289,13 +289,13 @@ class Scratch3VideoSensingBlocks {
|
||||||
*/
|
*/
|
||||||
get SUBJECT_INFO () {
|
get SUBJECT_INFO () {
|
||||||
return [
|
return [
|
||||||
{
|
|
||||||
name: 'stage',
|
|
||||||
value: SensingSubject.STAGE
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'sprite',
|
name: 'sprite',
|
||||||
value: SensingSubject.SPRITE
|
value: SensingSubject.SPRITE
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'stage',
|
||||||
|
value: SensingSubject.STAGE
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -366,7 +366,7 @@ class Scratch3VideoSensingBlocks {
|
||||||
SUBJECT: {
|
SUBJECT: {
|
||||||
type: ArgumentType.NUMBER,
|
type: ArgumentType.NUMBER,
|
||||||
menu: 'SUBJECT',
|
menu: 'SUBJECT',
|
||||||
defaultValue: SensingSubject.STAGE
|
defaultValue: SensingSubject.SPRITE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue