Update Transpiler
parent
d75f909d4a
commit
8dd7f3253d
|
|
@ -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<K,V> => Dictionary[K,V]
|
||||
- HashSet<K> => Dictionary[K,true]
|
||||
- string: `Length` to `length()`
|
||||
|
||||
|
||||
### **Math**
|
||||
|
|
|
|||
Loading…
Reference in New Issue