kopia lustrzana https://github.com/backface/turtlestitch
added new "primitive" blocks to dev palette
rodzic
975145cede
commit
8e1ac188a2
|
@ -5,6 +5,7 @@
|
||||||
### 2021-06-14
|
### 2021-06-14
|
||||||
* new dev version
|
* new dev version
|
||||||
* threads, blocks, objects, extensions: new safe extensions mechanism
|
* threads, blocks, objects, extensions: new safe extensions mechanism
|
||||||
|
* objects: added new "primitive" blocks to dev palette
|
||||||
|
|
||||||
## 6.9.0
|
## 6.9.0
|
||||||
* **Notable Changes:**
|
* **Notable Changes:**
|
||||||
|
|
|
@ -2841,6 +2841,9 @@ SpriteMorph.prototype.blockTemplates = function (category) {
|
||||||
blocks.push(txt);
|
blocks.push(txt);
|
||||||
blocks.push('-');
|
blocks.push('-');
|
||||||
blocks.push(block('doShowTable'));
|
blocks.push(block('doShowTable'));
|
||||||
|
blocks.push('-');
|
||||||
|
blocks.push(block('doApplyExtension'));
|
||||||
|
blocks.push(block('reportApplyExtension'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
|
@ -9007,6 +9010,9 @@ StageMorph.prototype.blockTemplates = function (category) {
|
||||||
blocks.push(txt);
|
blocks.push(txt);
|
||||||
blocks.push('-');
|
blocks.push('-');
|
||||||
blocks.push(block('doShowTable'));
|
blocks.push(block('doShowTable'));
|
||||||
|
blocks.push('-');
|
||||||
|
blocks.push(block('doApplyExtension'));
|
||||||
|
blocks.push(block('reportApplyExtension'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
|
|
Ładowanie…
Reference in New Issue