From f540f5ec239131ea963bafa6531589562dc6f010 Mon Sep 17 00:00:00 2001 From: suchmememanyskill <38142618+suchmememanyskill@users.noreply.github.com> Date: Sun, 26 Apr 2020 01:35:12 +0200 Subject: [PATCH] TegraExplorer v1.5.2 changes --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 312f291..951b01e 100644 --- a/README.md +++ b/README.md @@ -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)`.