Update Transpiler

Jori 2026-05-10 16:53:44 +00:00
parent d75f909d4a
commit 8dd7f3253d
1 changed files with 2 additions and 3 deletions

@ -6,7 +6,6 @@ Features
- Convert Godot.GD functions to global functions `GD.print` to `print`
### **GD Script Injection**
- Add GDScript from comment with `GDGlue.CommentToGD`
- Add GDScript by string with `GDGlue.InserGDScript`
@ -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<K,V> => Dictionary[K,V]
- HashSet<K> => Dictionary[K,true]
- string: `Length` to `length()`
### **Math**