|
|
4 місяців тому | |
|---|---|---|
| .. | ||
| .config | 4 місяців тому | |
| .vscode | 4 місяців тому | |
| Core | 4 місяців тому | |
| Platforms | 4 місяців тому | |
| Colored3DCube.sln | 4 місяців тому | |
| README.md | 4 місяців тому | |
This is a modernized MonoGame 3.8.* sample demonstrating a rotating colored 3D cube, now structured for cross-platform development with .NET 8.0 and VSCode/Visual Studio integration.
Colored3DCube.Core.csproj — Shared game logic (e.g., Game1.cs)Colored3DCube.DesktopGL.csproj — Cross-platform OpenGL versionPlatform.cs — DesktopGL entry pointColored3DCube.Windows.csproj — Windows DirectX versionPlatform.cs — Windows entry pointColored3DCube.Android.csproj — Android version (scaffolded)MainActivity.cs — Android entry pointAndroidManifest.xml — Android manifestColored3DCube.iOS.csproj — iOS version (scaffolded)Program.cs — iOS entry pointInfo.plist — iOS app infotasks.json and launch.json — Build/run integration for VSCodeF5 or select a configuration from the Run/Debug panel.DesktopGL:
dotnet build Platforms/DesktopGL/Colored3DCube.DesktopGL.csproj
dotnet run --project Platforms/DesktopGL/Colored3DCube.DesktopGL.csproj
Windows:
dotnet build Platforms/Windows/Colored3DCube.Windows.csproj
dotnet run --project Platforms/Windows/Colored3DCube.Windows.csproj
Android/iOS:
Core project