Update Transpiler
parent
d75f909d4a
commit
8dd7f3253d
|
|
@ -5,7 +5,6 @@ Features
|
||||||
- Convert GDScript Enum Values `Node.ProcessModeEnum.Disabled` to `Node.PROCESS_MODE_DISABLED`
|
- Convert GDScript Enum Values `Node.ProcessModeEnum.Disabled` to `Node.PROCESS_MODE_DISABLED`
|
||||||
- Convert Godot.GD functions to global functions `GD.print` to `print`
|
- Convert Godot.GD functions to global functions `GD.print` to `print`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### **GD Script Injection**
|
### **GD Script Injection**
|
||||||
- Add GDScript from comment with `GDGlue.CommentToGD`
|
- Add GDScript from comment with `GDGlue.CommentToGD`
|
||||||
|
|
@ -17,10 +16,10 @@ Features
|
||||||
- Create prefixed names for Rokojori Object Types
|
- Create prefixed names for Rokojori Object Types
|
||||||
|
|
||||||
### **C# System Types**
|
### **C# System Types**
|
||||||
- List => Array
|
- List/Array => Array: `Length/Count` to `size()`, `Add` to `append` ,`Remove` to `erase` etc
|
||||||
- Array => Array
|
|
||||||
- Dictionary<K,V> => Dictionary[K,V]
|
- Dictionary<K,V> => Dictionary[K,V]
|
||||||
- HashSet<K> => Dictionary[K,true]
|
- HashSet<K> => Dictionary[K,true]
|
||||||
|
- string: `Length` to `length()`
|
||||||
|
|
||||||
|
|
||||||
### **Math**
|
### **Math**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue