0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

blocklyでobjectを動かす。その15

Last updated at Posted at 2020-05-17

概要

blocklyでobjectを動かして見る。
音声合成をやってみた。

ステージを作る。

var msg = new SpeechSynthesisUtterance();
msg.lang = 'ja-JP';
msg.rate = 1.0;  
msg.pitch = 0.8;

フローを書く。

image

objectを書く。


Blockly.JavaScript.text_print = function(a) {
    return "msg.text = " + (Blockly.JavaScript.valueToCode(a, "TEXT", Blockly.JavaScript.ORDER_NONE) || "''") + ";\nwindow.speechSynthesis.speak(msg);\n";
};

成果物

以上。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?