summaryrefslogtreecommitdiff
path: root/API.md
diff options
context:
space:
mode:
authorjussi2024-01-28 18:29:06 +0200
committerjussi2024-01-28 18:29:06 +0200
commit143453af9ea9be82b2d58d665bed62abb716e21f (patch)
tree53ead99a8db6da542c868f48fb3115a3da0d5df6 /API.md
parent71cc89c3033365746e5dcdb933c460c8e0da7fb0 (diff)
downloadreilua-enhanced-143453af9ea9be82b2d58d665bed62abb716e21f.tar.gz
reilua-enhanced-143453af9ea9be82b2d58d665bed62abb716e21f.tar.bz2
reilua-enhanced-143453af9ea9be82b2d58d665bed62abb716e21f.zip
TextInsert and TextSplit.
Diffstat (limited to 'API.md')
-rw-r--r--API.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/API.md b/API.md
index d003c37..70a75f2 100644
--- a/API.md
+++ b/API.md
@@ -6668,6 +6668,26 @@ Encode one codepoint into UTF-8 byte array
---
+## Text - Text strings management functions (no UTF-8 strings, only byte chars)
+
+---
+
+> text = RL.TextInsert( string text, string insert, int position )
+
+Insert text in a specific position, moves all text forward
+
+- Success return string
+
+---
+
+> splits = RL.TextSplit( string text, char delimiter )
+
+Split text into multiple strings
+
+- Success return string{}
+
+---
+
## Models - Basic geometric 3D shapes drawing functions
---