kopia lustrzana https://github.com/backface/turtlestitch
moved TELL and ASK templates in the palette up underneath RUN CALL
rodzic
da9c293321
commit
f2bbff3d54
|
@ -3707,7 +3707,7 @@ Fixes:
|
|||
------
|
||||
* Blocks: keep “undo” and “redo” buttons at the same location
|
||||
* Objects, Threads: added "with inpus" to TELL and ASK prims, changed TELL's C-shape to command-style input
|
||||
|
||||
* Objects: moved TELL and ASK templates in the palette up underneath RUN CALL
|
||||
|
||||
v4.1 Features:
|
||||
* polymorphic sprite-local custom blocks
|
||||
|
|
22
objects.js
22
objects.js
|
@ -2024,13 +2024,9 @@ SpriteMorph.prototype.blockTemplates = function (category) {
|
|||
blocks.push(block('fork'));
|
||||
blocks.push(block('evaluate'));
|
||||
blocks.push('-');
|
||||
/*
|
||||
// list variants commented out for now (redundant)
|
||||
blocks.push(block('doRunWithInputList'));
|
||||
blocks.push(block('forkWithInputList'));
|
||||
blocks.push(block('evaluateWithInputList'));
|
||||
blocks.push(block('doTellTo'));
|
||||
blocks.push(block('reportAskFor'));
|
||||
blocks.push('-');
|
||||
*/
|
||||
blocks.push(block('doCallCC'));
|
||||
blocks.push(block('reportCallCC'));
|
||||
blocks.push('-');
|
||||
|
@ -2040,9 +2036,6 @@ SpriteMorph.prototype.blockTemplates = function (category) {
|
|||
blocks.push(block('removeClone'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doPauseAll'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doTellTo'));
|
||||
blocks.push(block('reportAskFor'));
|
||||
blocks.push('=');
|
||||
blocks.push(this.makeBlockButton(cat));
|
||||
|
||||
|
@ -7078,13 +7071,9 @@ StageMorph.prototype.blockTemplates = function (category) {
|
|||
blocks.push(block('fork'));
|
||||
blocks.push(block('evaluate'));
|
||||
blocks.push('-');
|
||||
/*
|
||||
// list variants commented out for now (redundant)
|
||||
blocks.push(block('doRunWithInputList'));
|
||||
blocks.push(block('forkWithInputList'));
|
||||
blocks.push(block('evaluateWithInputList'));
|
||||
blocks.push(block('doTellTo'));
|
||||
blocks.push(block('reportAskFor'));
|
||||
blocks.push('-');
|
||||
*/
|
||||
blocks.push(block('doCallCC'));
|
||||
blocks.push(block('reportCallCC'));
|
||||
blocks.push('-');
|
||||
|
@ -7092,9 +7081,6 @@ StageMorph.prototype.blockTemplates = function (category) {
|
|||
blocks.push(block('newClone'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doPauseAll'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doTellTo'));
|
||||
blocks.push(block('reportAskFor'));
|
||||
blocks.push('=');
|
||||
blocks.push(this.makeBlockButton(cat));
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue