From 8dd7f3253d006b46f5ba1d4454d8328a3607c785 Mon Sep 17 00:00:00 2001 From: Jori Date: Sun, 10 May 2026 16:53:44 +0000 Subject: [PATCH] Update Transpiler --- Transpiler.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Transpiler.md b/Transpiler.md index ae674ff..2140510 100644 --- a/Transpiler.md +++ b/Transpiler.md @@ -5,7 +5,6 @@ Features - Convert GDScript Enum Values `Node.ProcessModeEnum.Disabled` to `Node.PROCESS_MODE_DISABLED` - Convert Godot.GD functions to global functions `GD.print` to `print` - ### **GD Script Injection** - Add GDScript from comment with `GDGlue.CommentToGD` @@ -17,10 +16,10 @@ Features - Create prefixed names for Rokojori Object Types ### **C# System Types** -- List => Array -- Array => Array +- List/Array => Array: `Length/Count` to `size()`, `Add` to `append` ,`Remove` to `erase` etc - Dictionary => Dictionary[K,V] - HashSet => Dictionary[K,true] +- string: `Length` to `length()` ### **Math**