├── .gitignore ├── CSharpSyntaxHighlighter.cs ├── CSharpSyntaxHighlighter.cs.uid ├── DemoWebExports.csproj ├── DemoWebExports.sln ├── Fonts ├── FiraCode-VariableFont_wght.ttf ├── FiraCode-VariableFont_wght.ttf.import ├── MainFont.tres ├── NotoColorEmoji-Regular.ttf └── NotoColorEmoji-Regular.ttf.import ├── Icons ├── HSplitContainer.svg ├── HSplitContainer.svg.import ├── Play.svg ├── Play.svg.import ├── Reload.svg ├── Reload.svg.import ├── VSplitContainer.svg └── VSplitContainer.svg.import ├── LICENSE.txt ├── Main.cs ├── Main.cs.uid ├── Main.tscn ├── MainJS.cs ├── MainJS.cs.uid ├── Models ├── Cube.glb ├── Cube.glb.import ├── Cube.tscn ├── CubeShader.gdshader ├── CubeShader.gdshader.uid ├── DotNetCubeMaterial.tres └── GodotCubeMaterial.tres ├── OutputLabel.cs ├── OutputLabel.cs.uid ├── README.md ├── StringExtensions.cs ├── StringExtensions.cs.uid ├── Styles ├── ContentPanelStyle.tres └── ShellPanelStyle.tres ├── THIRD-PARTY-NOTICES.txt ├── dotnet-logo.svg ├── dotnet-logo.svg.import ├── export_presets.cfg ├── icon.svg ├── icon.svg.import ├── out └── .gdignore ├── project.godot └── serve.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharpSyntaxHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/CSharpSyntaxHighlighter.cs -------------------------------------------------------------------------------- /CSharpSyntaxHighlighter.cs.uid: -------------------------------------------------------------------------------- 1 | uid://rmcelrkgnseo 2 | -------------------------------------------------------------------------------- /DemoWebExports.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/DemoWebExports.csproj -------------------------------------------------------------------------------- /DemoWebExports.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/DemoWebExports.sln -------------------------------------------------------------------------------- /Fonts/FiraCode-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Fonts/FiraCode-VariableFont_wght.ttf -------------------------------------------------------------------------------- /Fonts/FiraCode-VariableFont_wght.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Fonts/FiraCode-VariableFont_wght.ttf.import -------------------------------------------------------------------------------- /Fonts/MainFont.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Fonts/MainFont.tres -------------------------------------------------------------------------------- /Fonts/NotoColorEmoji-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Fonts/NotoColorEmoji-Regular.ttf -------------------------------------------------------------------------------- /Fonts/NotoColorEmoji-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Fonts/NotoColorEmoji-Regular.ttf.import -------------------------------------------------------------------------------- /Icons/HSplitContainer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/HSplitContainer.svg -------------------------------------------------------------------------------- /Icons/HSplitContainer.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/HSplitContainer.svg.import -------------------------------------------------------------------------------- /Icons/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/Play.svg -------------------------------------------------------------------------------- /Icons/Play.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/Play.svg.import -------------------------------------------------------------------------------- /Icons/Reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/Reload.svg -------------------------------------------------------------------------------- /Icons/Reload.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/Reload.svg.import -------------------------------------------------------------------------------- /Icons/VSplitContainer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/VSplitContainer.svg -------------------------------------------------------------------------------- /Icons/VSplitContainer.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Icons/VSplitContainer.svg.import -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Main.cs -------------------------------------------------------------------------------- /Main.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bad4eeiw8wq3s 2 | -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Main.tscn -------------------------------------------------------------------------------- /MainJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/MainJS.cs -------------------------------------------------------------------------------- /MainJS.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bxelnpgs5vyr0 2 | -------------------------------------------------------------------------------- /Models/Cube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Models/Cube.glb -------------------------------------------------------------------------------- /Models/Cube.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Models/Cube.glb.import -------------------------------------------------------------------------------- /Models/Cube.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Models/Cube.tscn -------------------------------------------------------------------------------- /Models/CubeShader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Models/CubeShader.gdshader -------------------------------------------------------------------------------- /Models/CubeShader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://il0loc478sd4 2 | -------------------------------------------------------------------------------- /Models/DotNetCubeMaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Models/DotNetCubeMaterial.tres -------------------------------------------------------------------------------- /Models/GodotCubeMaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Models/GodotCubeMaterial.tres -------------------------------------------------------------------------------- /OutputLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/OutputLabel.cs -------------------------------------------------------------------------------- /OutputLabel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://oaeq3voiil3p 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/README.md -------------------------------------------------------------------------------- /StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/StringExtensions.cs -------------------------------------------------------------------------------- /StringExtensions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://pkbooq0ahnra 2 | -------------------------------------------------------------------------------- /Styles/ContentPanelStyle.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Styles/ContentPanelStyle.tres -------------------------------------------------------------------------------- /Styles/ShellPanelStyle.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/Styles/ShellPanelStyle.tres -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /dotnet-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/dotnet-logo.svg -------------------------------------------------------------------------------- /dotnet-logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/dotnet-logo.svg.import -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/icon.svg.import -------------------------------------------------------------------------------- /out/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/project.godot -------------------------------------------------------------------------------- /serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulsntos/godot4-web-dotnet-prototype/HEAD/serve.py --------------------------------------------------------------------------------