codetranslator
codetranslator copied to clipboard
Translates GDScript code to C#
Results
2
codetranslator issues
Sort by
recently updated
recently updated
newest added
**Version:** 0.7-dev (Last Build 2021-01-28 01:30) **Description of the problem:** Negative operations such as `-42` are not correctly handled. **Steps to reproduce:** See code. **Code:** Source Code ```gdscript func _ready():...
bug
converter:csharp
GDScript Dictionaries can be created using ```gdscript var dict = {"a": 10, "some": Vector2(10, 11)} ``` In C# we can use a similar syntax ```csharp var dict = new Godot.Collections.Dictionary...
bug
enhancement
converter:csharp