mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-06-07 02:54:38 -04:00
Implement 'hide all sprites' and 'user id' blocks
This commit is contained in:
parent
23e72525bf
commit
231402fc53
3 changed files with 17 additions and 1 deletions
src/serialization
|
@ -266,6 +266,11 @@ const specMap = {
|
|||
argMap: [
|
||||
]
|
||||
},
|
||||
'hideAll': {
|
||||
opcode: 'looks_hideallsprites',
|
||||
argMap: [
|
||||
]
|
||||
},
|
||||
'lookLike:': {
|
||||
opcode: 'looks_switchcostumeto',
|
||||
argMap: [
|
||||
|
@ -1043,6 +1048,11 @@ const specMap = {
|
|||
argMap: [
|
||||
]
|
||||
},
|
||||
'getUserId': {
|
||||
opcode: 'sensing_userid',
|
||||
argMap: [
|
||||
]
|
||||
},
|
||||
'+': {
|
||||
opcode: 'operator_add',
|
||||
argMap: [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue