├── .github ├── actions │ ├── godot-build │ │ └── action.yml │ ├── godot-cache │ │ ├── 04975d9d18c517136ad0a27ca872b16c-uncropped_scaled_within_1536_1152.afphoto │ │ ├── 04975d9d18c517136ad0a27ca872b16c-uncropped_scaled_within_1536_1152.webp │ │ └── action.yml │ ├── godot-deps │ │ └── action.yml │ └── upload-artifact │ │ └── action.yml └── workflows │ ├── android_builds.yml │ ├── linux_builds.yml │ ├── macos_builds.yml │ ├── nuget_publish.yml │ └── windows_builds.yml ├── .gitignore ├── Assets ├── icon.png └── icon_no_back.png ├── LICENSE ├── LibGodotSharp.sln ├── LibGodotSharpAndroid ├── Additions │ └── AboutAdditions.txt ├── LibGodotSharpAndroid.csproj ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml └── build.bat ├── LibGodotSharpDesktop ├── LibGodotSharp.Desktop.targets └── LibGodotSharpDesktop.csproj ├── README.md ├── TemplateProject ├── GodotApplication.sln ├── GodotApplication │ ├── DemoSpinningCubeNode.cs │ ├── GodotApplication.cs │ └── GodotApplication.csproj ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── AndroidPlatform.csproj │ │ ├── GodotApp.cs │ │ └── Resources │ │ │ ├── drawable-nodpi │ │ │ ├── splash_sceen.png │ │ │ └── splash_sceen_bg_color.png │ │ │ ├── drawable │ │ │ └── main_splash_drawable.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── appicon.xml │ │ │ └── appicon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── appicon.png │ │ │ ├── appicon_background.png │ │ │ └── appicon_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── appicon.png │ │ │ ├── appicon_background.png │ │ │ └── appicon_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── appicon.png │ │ │ ├── appicon_background.png │ │ │ └── appicon_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── appicon.png │ │ │ ├── appicon_background.png │ │ │ └── appicon_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── appicon.png │ │ │ ├── appicon_background.png │ │ │ └── appicon_foreground.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── themes.xml │ └── Desktop │ │ ├── DesktopPlatform.csproj │ │ ├── Program.cs │ │ ├── icon.ico │ │ └── icon.png └── README.md ├── TemplateProjectNetFramework ├── App.config ├── DemoSpinningCubeNode.cs ├── GodotApplication.cs ├── GodotApplication.csproj ├── GodotApplication.sln ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── TestAndroid ├── AndroidManifest.xml ├── GodotApp.cs ├── Resources │ ├── drawable-nodpi │ │ ├── splash.png │ │ └── splash_bg_color.png │ ├── drawable │ │ └── splash_drawable.xml │ ├── values-ar │ │ └── godot_project_name_string.xml │ ├── values-bg │ │ └── godot_project_name_string.xml │ ├── values-ca │ │ └── godot_project_name_string.xml │ ├── values-cs │ │ └── godot_project_name_string.xml │ ├── values-da │ │ └── godot_project_name_string.xml │ ├── values-de │ │ └── godot_project_name_string.xml │ ├── values-el │ │ └── godot_project_name_string.xml │ ├── values-en │ │ └── godot_project_name_string.xml │ ├── values-es-rES │ │ └── godot_project_name_string.xml │ ├── values-es │ │ └── godot_project_name_string.xml │ ├── values-fa │ │ └── godot_project_name_string.xml │ ├── values-fi │ │ └── godot_project_name_string.xml │ ├── values-fr │ │ └── godot_project_name_string.xml │ ├── values-hi │ │ └── godot_project_name_string.xml │ ├── values-hr │ │ └── godot_project_name_string.xml │ ├── values-hu │ │ └── godot_project_name_string.xml │ ├── values-in │ │ └── godot_project_name_string.xml │ ├── values-it │ │ └── godot_project_name_string.xml │ ├── values-iw │ │ └── godot_project_name_string.xml │ ├── values-ja │ │ └── godot_project_name_string.xml │ ├── values-ko │ │ └── godot_project_name_string.xml │ ├── values-lt │ │ └── godot_project_name_string.xml │ ├── values-lv │ │ └── godot_project_name_string.xml │ ├── values-nb │ │ └── godot_project_name_string.xml │ ├── values-nl │ │ └── godot_project_name_string.xml │ ├── values-pl │ │ └── godot_project_name_string.xml │ ├── values-pt │ │ └── godot_project_name_string.xml │ ├── values-ro │ │ └── godot_project_name_string.xml │ ├── values-ru │ │ └── godot_project_name_string.xml │ ├── values-sk │ │ └── godot_project_name_string.xml │ ├── values-sl │ │ └── godot_project_name_string.xml │ ├── values-sr │ │ └── godot_project_name_string.xml │ ├── values-sv │ │ └── godot_project_name_string.xml │ ├── values-th │ │ └── godot_project_name_string.xml │ ├── values-tl │ │ └── godot_project_name_string.xml │ ├── values-tr │ │ └── godot_project_name_string.xml │ ├── values-uk │ │ └── godot_project_name_string.xml │ ├── values-vi │ │ └── godot_project_name_string.xml │ ├── values-zh-rHK │ │ └── godot_project_name_string.xml │ ├── values-zh-rTW │ │ └── godot_project_name_string.xml │ ├── values-zh │ │ └── godot_project_name_string.xml │ └── values │ │ ├── godot_project_name_string.xml │ │ └── themes.xml └── TestAndroid.csproj ├── TestConsoleApp ├── Program.cs ├── Properties │ └── launchSettings.json └── TestConsoleApp.csproj ├── TestLibGodotSharp ├── ANode.cs ├── HelloFromLibGodot.cs ├── MainGodotGame.cs ├── TestLibGodotSharp.csproj └── ZNode.cs ├── libgodotsharp ├── AndroidTest.cs ├── Attributes │ ├── ExportAttribute.cs │ ├── MethodAttribute .cs │ ├── NotificationAttribute.cs │ ├── NotifyAttribute.cs │ ├── RegisterAttribute.cs │ └── SignalAttribute.cs ├── Entry.cs ├── Export.cs ├── Extensions │ ├── Array.cs │ ├── ArrayMesh.cs │ ├── ArrayTyped.cs │ ├── Basisc.cs │ ├── Callable.cs │ ├── MathGD.cs │ ├── Node.cs │ ├── NodePath.cs │ ├── Object.cs │ ├── PackedByteArray.cs │ ├── PackedColorArray.cs │ ├── PackedFloat32Array.cs │ ├── PackedFloat64Array.cs │ ├── PackedInt32Array.cs │ ├── PackedInt64Array.cs │ ├── PackedStringArray.cs │ ├── PackedVector2Array.cs │ ├── PackedVector3Array.cs │ ├── Projection.cs │ ├── RefCounted.cs │ ├── StringName.cs │ ├── Transform2D.cs │ └── Transform3D.cs ├── GDExtensionMain.cs ├── GenNotification.cs ├── GenVirtual.cs ├── Generator.cs ├── LibGodotCustomCallable.cs ├── LibGodotManager.cs ├── LibGodotSharp.csproj ├── Methods.cs ├── Native.cs ├── Notification.cs ├── Register.cs ├── Renamer.cs ├── ResourceHelper.cs ├── SaftyRapper.cs ├── Signal.cs ├── StringMarshall.cs ├── Variant.cs └── Wrapped.cs └── sharp_generator ├── Convert.cs ├── Documentation.cs ├── Fixer.cs ├── GDapi.cs ├── Program.cs ├── Properties └── launchSettings.json ├── SconsRunner.cs └── SharpGenerator.csproj /.github/actions/godot-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/actions/godot-build/action.yml -------------------------------------------------------------------------------- /.github/actions/godot-cache/04975d9d18c517136ad0a27ca872b16c-uncropped_scaled_within_1536_1152.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/actions/godot-cache/04975d9d18c517136ad0a27ca872b16c-uncropped_scaled_within_1536_1152.afphoto -------------------------------------------------------------------------------- /.github/actions/godot-cache/04975d9d18c517136ad0a27ca872b16c-uncropped_scaled_within_1536_1152.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/actions/godot-cache/04975d9d18c517136ad0a27ca872b16c-uncropped_scaled_within_1536_1152.webp -------------------------------------------------------------------------------- /.github/actions/godot-cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/actions/godot-cache/action.yml -------------------------------------------------------------------------------- /.github/actions/godot-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/actions/godot-deps/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-artifact/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/actions/upload-artifact/action.yml -------------------------------------------------------------------------------- /.github/workflows/android_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/workflows/android_builds.yml -------------------------------------------------------------------------------- /.github/workflows/linux_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/workflows/linux_builds.yml -------------------------------------------------------------------------------- /.github/workflows/macos_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/workflows/macos_builds.yml -------------------------------------------------------------------------------- /.github/workflows/nuget_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/workflows/nuget_publish.yml -------------------------------------------------------------------------------- /.github/workflows/windows_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.github/workflows/windows_builds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/Assets/icon.png -------------------------------------------------------------------------------- /Assets/icon_no_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/Assets/icon_no_back.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /LibGodotSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharp.sln -------------------------------------------------------------------------------- /LibGodotSharpAndroid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpAndroid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /LibGodotSharpAndroid/LibGodotSharpAndroid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpAndroid/LibGodotSharpAndroid.csproj -------------------------------------------------------------------------------- /LibGodotSharpAndroid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpAndroid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /LibGodotSharpAndroid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpAndroid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /LibGodotSharpAndroid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpAndroid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /LibGodotSharpAndroid/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpAndroid/build.bat -------------------------------------------------------------------------------- /LibGodotSharpDesktop/LibGodotSharp.Desktop.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpDesktop/LibGodotSharp.Desktop.targets -------------------------------------------------------------------------------- /LibGodotSharpDesktop/LibGodotSharpDesktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/LibGodotSharpDesktop/LibGodotSharpDesktop.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/README.md -------------------------------------------------------------------------------- /TemplateProject/GodotApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/GodotApplication.sln -------------------------------------------------------------------------------- /TemplateProject/GodotApplication/DemoSpinningCubeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/GodotApplication/DemoSpinningCubeNode.cs -------------------------------------------------------------------------------- /TemplateProject/GodotApplication/GodotApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/GodotApplication/GodotApplication.cs -------------------------------------------------------------------------------- /TemplateProject/GodotApplication/GodotApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/GodotApplication/GodotApplication.csproj -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/AndroidPlatform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/AndroidPlatform.csproj -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/GodotApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/GodotApp.cs -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/drawable-nodpi/splash_sceen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/drawable-nodpi/splash_sceen.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/drawable-nodpi/splash_sceen_bg_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/drawable-nodpi/splash_sceen_bg_color.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/drawable/main_splash_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/drawable/main_splash_drawable.xml -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-anydpi-v26/appicon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-anydpi-v26/appicon.xml -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-anydpi-v26/appicon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-anydpi-v26/appicon_round.xml -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-hdpi/appicon.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-hdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-hdpi/appicon_background.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-hdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-hdpi/appicon_foreground.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-mdpi/appicon.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-mdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-mdpi/appicon_background.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-mdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-mdpi/appicon_foreground.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xhdpi/appicon.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xhdpi/appicon_background.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xxhdpi/appicon.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xxhdpi/appicon_background.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xxxhdpi/appicon.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xxxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xxxhdpi/appicon_background.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/mipmap-xxxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/mipmap-xxxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /TemplateProject/Platforms/Android/Resources/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Android/Resources/values/themes.xml -------------------------------------------------------------------------------- /TemplateProject/Platforms/Desktop/DesktopPlatform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Desktop/DesktopPlatform.csproj -------------------------------------------------------------------------------- /TemplateProject/Platforms/Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Desktop/Program.cs -------------------------------------------------------------------------------- /TemplateProject/Platforms/Desktop/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Desktop/icon.ico -------------------------------------------------------------------------------- /TemplateProject/Platforms/Desktop/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/Platforms/Desktop/icon.png -------------------------------------------------------------------------------- /TemplateProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProject/README.md -------------------------------------------------------------------------------- /TemplateProjectNetFramework/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/App.config -------------------------------------------------------------------------------- /TemplateProjectNetFramework/DemoSpinningCubeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/DemoSpinningCubeNode.cs -------------------------------------------------------------------------------- /TemplateProjectNetFramework/GodotApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/GodotApplication.cs -------------------------------------------------------------------------------- /TemplateProjectNetFramework/GodotApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/GodotApplication.csproj -------------------------------------------------------------------------------- /TemplateProjectNetFramework/GodotApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/GodotApplication.sln -------------------------------------------------------------------------------- /TemplateProjectNetFramework/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/Program.cs -------------------------------------------------------------------------------- /TemplateProjectNetFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TemplateProjectNetFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestAndroid/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/AndroidManifest.xml -------------------------------------------------------------------------------- /TestAndroid/GodotApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/GodotApp.cs -------------------------------------------------------------------------------- /TestAndroid/Resources/drawable-nodpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/drawable-nodpi/splash.png -------------------------------------------------------------------------------- /TestAndroid/Resources/drawable-nodpi/splash_bg_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/drawable-nodpi/splash_bg_color.png -------------------------------------------------------------------------------- /TestAndroid/Resources/drawable/splash_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/drawable/splash_drawable.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-ar/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-ar/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-bg/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-bg/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-ca/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-ca/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-cs/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-cs/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-da/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-da/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-de/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-de/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-el/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-el/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-en/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-en/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-es-rES/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-es-rES/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-es/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-es/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-fa/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-fa/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-fi/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-fi/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-fr/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-fr/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-hi/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-hi/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-hr/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-hr/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-hu/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-hu/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-in/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-in/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-it/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-it/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-iw/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-iw/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-ja/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-ja/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-ko/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-ko/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-lt/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-lt/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-lv/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-lv/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-nb/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-nb/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-nl/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-nl/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-pl/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-pl/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-pt/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-pt/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-ro/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-ro/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-ru/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-ru/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-sk/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-sk/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-sl/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-sl/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-sr/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-sr/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-sv/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-sv/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-th/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-th/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-tl/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-tl/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-tr/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-tr/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-uk/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-uk/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-vi/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-vi/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-zh-rHK/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-zh-rHK/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-zh-rTW/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-zh-rTW/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values-zh/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values-zh/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values/godot_project_name_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values/godot_project_name_string.xml -------------------------------------------------------------------------------- /TestAndroid/Resources/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/Resources/values/themes.xml -------------------------------------------------------------------------------- /TestAndroid/TestAndroid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestAndroid/TestAndroid.csproj -------------------------------------------------------------------------------- /TestConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestConsoleApp/Program.cs -------------------------------------------------------------------------------- /TestConsoleApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestConsoleApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /TestConsoleApp/TestConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestConsoleApp/TestConsoleApp.csproj -------------------------------------------------------------------------------- /TestLibGodotSharp/ANode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestLibGodotSharp/ANode.cs -------------------------------------------------------------------------------- /TestLibGodotSharp/HelloFromLibGodot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestLibGodotSharp/HelloFromLibGodot.cs -------------------------------------------------------------------------------- /TestLibGodotSharp/MainGodotGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestLibGodotSharp/MainGodotGame.cs -------------------------------------------------------------------------------- /TestLibGodotSharp/TestLibGodotSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestLibGodotSharp/TestLibGodotSharp.csproj -------------------------------------------------------------------------------- /TestLibGodotSharp/ZNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/TestLibGodotSharp/ZNode.cs -------------------------------------------------------------------------------- /libgodotsharp/AndroidTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/AndroidTest.cs -------------------------------------------------------------------------------- /libgodotsharp/Attributes/ExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Attributes/ExportAttribute.cs -------------------------------------------------------------------------------- /libgodotsharp/Attributes/MethodAttribute .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Attributes/MethodAttribute .cs -------------------------------------------------------------------------------- /libgodotsharp/Attributes/NotificationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Attributes/NotificationAttribute.cs -------------------------------------------------------------------------------- /libgodotsharp/Attributes/NotifyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Attributes/NotifyAttribute.cs -------------------------------------------------------------------------------- /libgodotsharp/Attributes/RegisterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Attributes/RegisterAttribute.cs -------------------------------------------------------------------------------- /libgodotsharp/Attributes/SignalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Attributes/SignalAttribute.cs -------------------------------------------------------------------------------- /libgodotsharp/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Entry.cs -------------------------------------------------------------------------------- /libgodotsharp/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Export.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/ArrayMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/ArrayMesh.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/ArrayTyped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/ArrayTyped.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Basisc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Basisc.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Callable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Callable.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/MathGD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/MathGD.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Node.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/NodePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/NodePath.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Object.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedByteArray.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedColorArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedColorArray.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedFloat32Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedFloat32Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedFloat64Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedFloat64Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedInt32Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedInt32Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedInt64Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedInt64Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedStringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedStringArray.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedVector2Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedVector2Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/PackedVector3Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/PackedVector3Array.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Projection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Projection.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/RefCounted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/RefCounted.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/StringName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/StringName.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Transform2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Transform2D.cs -------------------------------------------------------------------------------- /libgodotsharp/Extensions/Transform3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Extensions/Transform3D.cs -------------------------------------------------------------------------------- /libgodotsharp/GDExtensionMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/GDExtensionMain.cs -------------------------------------------------------------------------------- /libgodotsharp/GenNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/GenNotification.cs -------------------------------------------------------------------------------- /libgodotsharp/GenVirtual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/GenVirtual.cs -------------------------------------------------------------------------------- /libgodotsharp/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Generator.cs -------------------------------------------------------------------------------- /libgodotsharp/LibGodotCustomCallable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/LibGodotCustomCallable.cs -------------------------------------------------------------------------------- /libgodotsharp/LibGodotManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/LibGodotManager.cs -------------------------------------------------------------------------------- /libgodotsharp/LibGodotSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/LibGodotSharp.csproj -------------------------------------------------------------------------------- /libgodotsharp/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Methods.cs -------------------------------------------------------------------------------- /libgodotsharp/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Native.cs -------------------------------------------------------------------------------- /libgodotsharp/Notification.cs: -------------------------------------------------------------------------------- 1 | namespace GDExtension; 2 | 3 | public enum Notification 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libgodotsharp/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Register.cs -------------------------------------------------------------------------------- /libgodotsharp/Renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Renamer.cs -------------------------------------------------------------------------------- /libgodotsharp/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/ResourceHelper.cs -------------------------------------------------------------------------------- /libgodotsharp/SaftyRapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/SaftyRapper.cs -------------------------------------------------------------------------------- /libgodotsharp/Signal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Signal.cs -------------------------------------------------------------------------------- /libgodotsharp/StringMarshall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/StringMarshall.cs -------------------------------------------------------------------------------- /libgodotsharp/Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Variant.cs -------------------------------------------------------------------------------- /libgodotsharp/Wrapped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/libgodotsharp/Wrapped.cs -------------------------------------------------------------------------------- /sharp_generator/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/Convert.cs -------------------------------------------------------------------------------- /sharp_generator/Documentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/Documentation.cs -------------------------------------------------------------------------------- /sharp_generator/Fixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/Fixer.cs -------------------------------------------------------------------------------- /sharp_generator/GDapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/GDapi.cs -------------------------------------------------------------------------------- /sharp_generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/Program.cs -------------------------------------------------------------------------------- /sharp_generator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/Properties/launchSettings.json -------------------------------------------------------------------------------- /sharp_generator/SconsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/SconsRunner.cs -------------------------------------------------------------------------------- /sharp_generator/SharpGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhubarbVR/LibGodotSharp/HEAD/sharp_generator/SharpGenerator.csproj --------------------------------------------------------------------------------