Update Transpiler

Jori 2026-05-11 05:13:11 +00:00
parent 9466b246f3
commit 426c149a47
1 changed files with 5 additions and 0 deletions

@ -29,6 +29,11 @@ Features
- string: `Length` to `length()` - string: `Length` to `length()`
- Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s` - Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s`
### **C# Delegates/GDScript Callable**
- rewrite to not-nullable type
- null-initializers from `null` to `Callable()`
- null-comparisons from `c == null` to `c == null || c.is_null()`
### **Math** ### **Math**
- float.MaxValue converted to value - float.MaxValue converted to value
- `float.IsInfinity` to `is_inf` - `float.IsInfinity` to `is_inf`