Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
Michael 1c95bc134b update 2022-10-31 15:26:45 +01:00
Michael 8c5adb6433 fix typo issues #125 2022-10-31 15:25:00 +01:00
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -48,7 +48,7 @@
<script type="text/javascript" src="stitchcode/threads.js?version=2022-10-05"></script>
<script type="text/javascript" src="stitchcode/objects.js?version=2022-10-05"></script>
<script type="text/javascript" src="stitchcode/turtlecloud.js?version=2022-10-05"></script>
<script type="text/javascript" src="stitchcode/gui.js?version=2022-10-29"></script>
<script type="text/javascript" src="stitchcode/gui.js?version=2022-10-31"></script>
<script type="text/javascript" src="stitchcode/store.js?version=2022-06-14"></script>
<script type="text/javascript">

Wyświetl plik

@ -1223,7 +1223,7 @@ SpriteMorph.prototype.setBrightness = function (num) {
};
SpriteMorph.prototype.changeBrightness = function (delta) {
this.setBrightness(this.getBrightness() + (+delta || 0));
this.setBrightness(this.getBrightness() + (delta || 0));
};
SpriteMorph.prototype.setSaturation = function (num) {
@ -1237,7 +1237,7 @@ SpriteMorph.prototype.getSaturation = function () {
};
SpriteMorph.prototype.changeSaturation= function (delta) {
this.setSaturation(this.getSaturation() + (+delta || 0));
this.setSaturation(this.getSaturation() + (delta || 0));
};
SpriteMorph.prototype.setHSB = function (channel, value) {
@ -1269,7 +1269,7 @@ SpriteMorph.prototype.changeHSB = function (channel, value) {
} else if (channel == 'saturation') {
return this.changeSaturation(value);
} else if (channel == 'brightness') {
return this.changeBrightnes(value);
return this.changeBrightness(value);
}
};