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**