mirror of
https://github.com/suchmememanyskill/TegraScript.git
synced 2025-04-29 06:09:29 -04:00
TegraExplorer v1.5.2 changes
This commit is contained in:
parent
c65961e6dc
commit
f540f5ec23
1 changed files with 6 additions and 1 deletions
|
@ -5,7 +5,7 @@ The scripting language of TegraExplorer
|
|||
|
||||
Function | Args | Description | Output
|
||||
|:-|:-|:-|:-|
|
||||
`printf(string arg1)` | arg1: Text to print to the screen | writes text to the screen | returns 0
|
||||
`printf(...)` | ...: can be any count of args. Stuff like ("This ", "Is", $Pretty, @Neat) works | writes text to the screen | returns 0
|
||||
`printInt(int arg1)` | arg1: Int variable to print | Displays an int variable to the screen in the format `@var: (number)` | returns 0
|
||||
`setPrintPos(int arg1, int arg2)` | arg1: sets cursor position x, arg2: sets cursor position y | sets cursor to a position on the screen. Max X is 42, max Y is 78 | returns 0
|
||||
`clearscreen()` | - | clears the screen | returns 0
|
||||
|
@ -102,6 +102,11 @@ pause()
|
|||
|
||||
# Changelog
|
||||
|
||||
#### 26/04/2020
|
||||
With the release of TegraExplorer v1.5.2, there has been 1 new feature implemented.
|
||||
|
||||
printf() now can print multiple variables. `printf("This ", "Is", $Pretty, @Neat)` is valid syntax now
|
||||
|
||||
#### 12/04/2020
|
||||
With the release of TegraExplorer v1.5.1, there has been some breaking changes. `?LOOP` and `goto(?LOOP)` is no longer valid syntax. Replace this with `@LOOP = getLocation()` and `goto(@LOOP)`.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue