BoxEngine 1.0.18-alpha

This is a prerelease version of BoxEngine.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package BoxEngine --version 1.0.18-alpha
                    
NuGet\Install-Package BoxEngine -Version 1.0.18-alpha
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BoxEngine" Version="1.0.18-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BoxEngine" Version="1.0.18-alpha" />
                    
Directory.Packages.props
<PackageReference Include="BoxEngine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BoxEngine --version 1.0.18-alpha
                    
#r "nuget: BoxEngine, 1.0.18-alpha"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=BoxEngine&version=1.0.18-alpha&prerelease
                    
Install BoxEngine as a Cake Addin
#tool nuget:?package=BoxEngine&version=1.0.18-alpha&prerelease
                    
Install BoxEngine as a Cake Tool

BoxGameEngine

BoxEngine is a simple game engine for building 2D games in .NET.

Features

  • Easy to use
  • High performance
  • Cross-platform
  • Does not require an editor to create entities
  • And much more...

Getting Started

  1. Install the package:

    dotnet add package BoxEngine
    
  2. Usage example:

    using Box;
    
    [STAThread]
    static void StartGame()
    {
        using var game = new Engine(new EngineSettings
        {
            Window = new Vect2(1920, 1080),
            Viewport = new(320, 180),
            Screens = [new BootScreen()],
            ChunkSize = 320 * 2,
            UseTextureHalfOffset = true,
            DebugDraw = false,
        });
    
        game.Start();
    }
    
    StartGame();
    

License

MIT

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.40-beta 52 11 days ago
1.0.38-beta 88 12 days ago
1.0.37-beta 93 14 days ago
1.0.36-beta 426 14 days ago
1.0.34-beta 430 14 days ago
1.0.33-beta 428 15 days ago
1.0.32-beta 428 15 days ago
1.0.30-beta 420 16 days ago
1.0.26-beta 56 a month ago
1.0.25-beta 62 a month ago
1.0.23-beta 49 3 months ago
1.0.22-beta 21 3 months ago
1.0.20-beta 45 3 months ago
1.0.18-alpha 50 3 months ago
1.0.16-alpha 59 3 months ago
1.0.15-alpha 65 4 months ago
1.0.14-alpha 57 4 months ago
1.0.13-alpha 58 4 months ago
1.0.11-alpha 55 5 months ago
1.0.10-alpha 72 8 months ago
1.0.9-alpha 65 8 months ago
1.0.8-alpha 73 9 months ago
1.0.7-alpha 71 9 months ago
1.0.6-alpha 71 9 months ago
1.0.5-alpha 80 9 months ago
1.0.4-alpha 73 9 months ago
1.0.3-alpha 66 9 months ago
1.0.2-alpha 71 9 months ago
1.0.1-alpha 90 10 months ago
1.0.0-alpha 73 10 months ago 1.0.0-alpha is deprecated because it is no longer maintained.

- Entity Center Property: Added a new Center property to entities, simplifying access to their central position.
   - Viewport Property for Screens: Introduced a Viewport property in the Screen class, eliminating the need to access the renderer directly for viewport data.
   - Screen Dimensions: Added Width and Height properties to the Screen class, allowing for easier retrieval of the viewport's dimensions.