This adds lots of new blocks
(NOTE: the array of all sprites block was written by @richard. All I did was turn it into extension form)
This adds lots of new blocks
(NOTE: the array of all sprites block was written by @richard. All I did was turn it into extension form)
Nice
Could you post a picture of them? (And will you add more stuff upon request?)
Will take requests, but I am too lazy to take pics…
That red color is good.
I cannot remember which block ‘I wanted’, but I do like being mentioned . Perhaps you can take a screenshot of the block ‘does sprite kind exist’ and how it is used. On my Windows machine I use a tool from Microsoft called ‘Snipping Tool’; it is very easy to use.
I would take screenshots with that, but sometimes it breaks windows file explorer and the task bar so I need to restart the process with task manager.
Yes that…
I’m seeing with the make code team to see bout that. For now you need to add the blocks through JavaScript.
I had a quick look at the custom.ts file. Please correct if I am wrong, but it seems that the function ‘doesKindExists’ does not use the variables ‘kind’.
export function doesKindExists(kind: number): boolean {
let temporaryVar = 0
for(let value of Extras.arrayOfAllSprites()){
temporaryVar += 1
}
if(temporaryVar > 0){
return true
}else{
return false
}
}
Hmmm, that’s odd. It may just be a random bug that reverted part of the code. Will fix tomorrow.