This commit is contained in:
Martin Haye 2014-07-06 08:10:07 -07:00
commit ac2e03e35d
3 changed files with 14 additions and 1 deletions

View File

@ -52,6 +52,7 @@
</category>
<category name="Text">
<block type="text_window"></block>
<block type="text_clear_window"></block>
<block type="text_moveto"></block>
<block type="text_print"></block>
<block type="text_println"></block>

View File

@ -161,6 +161,18 @@ if (typeof Mythos === "undefined") {
this.setTooltip('Print text and leave cursor at end of last printed character');
}
};
Blockly.Blocks['text_clear_window'] = {
init: function() {
this.setHelpUrl('https://docs.google.com/document/d/1VXbiY4G533-cokjQevZFhwvqMMCL--17ziMAoFoeJ5M');
this.setColour(54);
this.setPreviousStatement(true);
this.setNextStatement(true);
this.appendDummyInput()
.appendField("Clear Window");
this.setOutput(false);
this.setTooltip('Clears text window and moves cursor to the top');
}
};
Blockly.Blocks['text_scroll'] = {
init: function() {
this.setHelpUrl('https://docs.google.com/document/d/1VXbiY4G533-cokjQevZFhwvqMMCL--17ziMAoFoeJ5M');

View File

@ -8,7 +8,7 @@ The Apache license covers everything in here, including any sample game content
Download Links
--------------
- The most recent copy of Outlaw Editor (aka the Daily build) can be found here: http://8bitweapon.com/lawlesslegends/OutlawEditor/target/jfx/app/OutlawEditor-jfx.jar
- The most recent copy of Outlaw Editor (aka the Daily build) can be found here: https://www.dropbox.com/s/2bhoxqrqjjehmqb/OutlawEditor-jfx.jar
- Live builds of the Apple platform code (AKA the Apple // series game port) will soon be available
How to get involved