- The editor must automate edition of csproj files (add/remove scripts created by users, assembly references, etc), while also giving the user a panel to do it manually if needed. (in progress, for alpha)
Give the user some options for configuring csproj files from the editor.(This was the same as above...)- Exporting. Assemblies must be bundled with PCK files. (need to do this in the Godot repo)
- Autocompletion and analysis with OmniSharp in the built-in editor. (very low priority, IDEs are the priority)
- Debugging and profiling from the editor. (very low priority, IDEs are the priority)
Generate and build the C# bindings project for the correct Godot API version.
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ur GodotSharp_before/GodotSharp/Core/GD_constants.cs GodotSharp_after/GodotSharp/Core/GD_constants.cs | |
| --- GodotSharp_before/GodotSharp/Core/GD_constants.cs 2019-03-20 21:16:54.214304500 +0100 | |
| +++ GodotSharp_after/GodotSharp/Core/GD_constants.cs 2019-03-23 19:57:07.538196400 +0100 | |
| @@ -5,7 +5,7 @@ | |
| public static partial class GD | |
| { | |
| /// <summary> | |
| - /// Scancodes with this bit applied are non printable. | |
| + /// <para>Scancodes with this bit applied are non printable.</para> | |
| /// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Windows", | |
| "includePath": [ | |
| "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/include/*", | |
| "C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/um", | |
| "C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/ucrt", | |
| "C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/shared", | |
| "C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/winrt", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ruN old/GodotSharp/Core/GD_constants.cs new/GodotSharp/Core/GD_constants.cs | |
| --- old/GodotSharp/Core/GD_constants.cs 2018-10-18 17:52:23.978260000 +0200 | |
| +++ new/GodotSharp/Core/GD_constants.cs 2018-10-18 19:29:12.507585000 +0200 | |
| @@ -585,43 +585,43 @@ | |
| /// <summary> | |
| /// Number 0 | |
| /// </summary> | |
| - Y0 = 48, | |
| + Key0 = 48, | |
| /// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find core drivers editor main modules platform scene servers -regex ".*\.\(h\|hpp\|hxx\|c\|cpp\|cxx\|inc\)" -type f -exec sed -i -E "/^\s*(\/\/)*ClassDB::bind_method\(/ s/\"([a-zA-Z0-9_]*)(:[a-zA-Z0-9_]*)\"/\"\1\"/g" {} + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def qedit__String(d, value, data): | |
| val = d.fromNativeValue(value) | |
| d.call('Error', val, 'resize', str(len(data) + 1)) | |
| d.setValues(val['_ptr'].extractPointer(), 'wchar_t', [ord(c) for c in data] + [ 0 ]) | |
| def qform__String(): | |
| return [SimpleFormat, SeparateFormat] | |
| def qdump__String(d, value): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extends Node | |
| const BLOCKING = false | |
| const PRINTRAW = true | |
| onready var te = get_node("TextEdit") | |
| var process = Process.new() | |
| var timer = Timer.new() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import std.stdio; | |
| import std.file; | |
| import std.algorithm; | |
| import core.thread; | |
| import std.process; | |
| int main(string[] args) | |
| { | |
| writeln("Working directory: " ~ getcwd()); | |
| //stdout.flush(); |