more relabelling options for SAY, THINK, ASK

pull/3/merge
jmoenig 2014-06-06 11:58:17 +02:00
rodzic dcd7fb9254
commit 7f1b542e73
2 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -2164,3 +2164,4 @@ ______
* Objects: added more relabelling options to SAY and THINK variants
* Blocks, objects: enable relabelling blocks with C-Slots
* Blocks: enable relabelling blocks across categories
* Objects: more relabelling options for SAY, THINK, ASK

Wyświetl plik

@ -1199,10 +1199,10 @@ SpriteMorph.prototype.blockAlternatives = {
yPosition: ['xPosition'],
// looks:
doSayFor: ['doThinkFor', 'bubble', 'doThink'],
doThinkFor: ['doSayFor', 'doThink', 'bubble'],
bubble: ['doThink', 'doSayFor', 'doThinkFor'],
doThink: ['bubble', 'doSayFor', 'doThinkFor'],
doSayFor: ['doThinkFor', 'bubble', 'doThink', 'doAsk'],
doThinkFor: ['doSayFor', 'doThink', 'bubble', 'doAsk'],
bubble: ['doThink', 'doAsk', 'doSayFor', 'doThinkFor'],
doThink: ['bubble', 'doAsk', 'doSayFor', 'doThinkFor'],
show: ['hide'],
hide: ['show'],
changeEffect: ['setEffect'],
@ -1239,6 +1239,7 @@ SpriteMorph.prototype.blockAlternatives = {
doUntil: ['doRepeat', 'doIf'],
// sensing:
doAsk: ['bubble', 'doThink', 'doSayFor', 'doThinkFor'],
getLastAnswer: ['getTimer'],
getTimer: ['getLastAnswer'],
reportMouseX: ['reportMouseY'],