mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:50:38 +02:00
code tidy up
Fixed indentation, fixed text overflow.
This commit is contained in:
parent
1d335c1218
commit
2532a54a2d
1 changed files with 9 additions and 9 deletions
|
@ -174,19 +174,19 @@ function updateWriting(deltaTime){
|
||||||
cursor = "|";
|
cursor = "|";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// attempt at some overflow control of the text
|
// attempt at some overflow control of the text
|
||||||
if ((writing.length % (width/11)) == 0) {
|
if ((writing.length % 53) == 0) {
|
||||||
writing = writing + "\n";
|
writing = writing + "\n";
|
||||||
}
|
}
|
||||||
// add blinking cursor to window during typing
|
// add blinking cursor to window during typing
|
||||||
var addCursor = writing + cursor;
|
var addCursor = writing + cursor;
|
||||||
if (clickedText == true){
|
if (clickedText == true){
|
||||||
Overlays.editOverlay(inputWindow, { text: addCursor});
|
Overlays.editOverlay(inputWindow, { text: addCursor});
|
||||||
}else{
|
}else{
|
||||||
Overlays.editOverlay(inputWindow, { text: writing});
|
Overlays.editOverlay(inputWindow, { text: writing});
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// test keystroke against keyString and capture permitted keys
|
// test keystroke against keyString and capture permitted keys
|
||||||
|
|
Loading…
Reference in a new issue