TegraExplorer v1.5.2 changes

This commit is contained in:
suchmememanyskill 2020-04-26 01:35:12 +02:00 committed by GitHub
parent c65961e6dc
commit f540f5ec23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)`.