Walgelijk 0.10.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Walgelijk --version 0.10.1                
NuGet\Install-Package Walgelijk -Version 0.10.1                
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="Walgelijk" Version="0.10.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Walgelijk --version 0.10.1                
#r "nuget: Walgelijk, 0.10.1"                
#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.
// Install Walgelijk as a Cake Addin
#addin nuget:?package=Walgelijk&version=0.10.1

// Install Walgelijk as a Cake Tool
#tool nuget:?package=Walgelijk&version=0.10.1                

logo

Nuget

Een kleine, simpele 2D game engine

var game = new Game(
	new OpenTKWindow("Videogame", new Vector2(-1), new Vector2(1280, 720)),
	new OpenALAudioRenderer()
);

game.UpdateRate = 120;
game.FixedUpdateRate = 60;
game.Window.VSync = false;

TextureLoader.Settings.FilterMode = FilterMode.Linear;

Resources.SetBasePathForType<FixedAudioData>("audio");
Resources.SetBasePathForType<StreamAudioData>("audio");
Resources.SetBasePathForType<Texture>("textures");
Resources.SetBasePathForType<Font>("fonts");

game.Scene = new Scene(game);
scene.AddSystem(new CameraSystem());
scene.AddSystem(new TransformSystem());
		
var camera = scene.CreateEntity();
scene.AttachComponent(camera, new TransformComponent());
scene.AttachComponent(camera, new CameraComponent
{
    PixelsPerUnit = 1,
    OrthographicSize = 1,
    ClearColour = new Color("#a8a3c1")
});

#if DEBUG
	game.DevelopmentMode = true;
	game.Console.DrawConsoleNotification = true;
#else
	game.DevelopmentMode = false;
	game.Console.DrawConsoleNotification = false;
#endif

game.Window.SetIcon(Resources.Load<Texture>("icon.png"));
game.Profiling.DrawQuickProfiler = false;

game.Start();

De resources folder moet worden gekopieerd wanneer je een nieuw project maakt omdat daar de standaard shaders en fonts in zitten

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on Walgelijk:

Package Downloads
Walgelijk.Onion

IMGUI module for Walgelijk

Walgelijk.OpenTK

Windowing, input, video, and audio interface for Walgelijk using OpenTK

Walgelijk.SimpleDrawing

Immediate-mode drawing API

Walgelijk.AssetManager

Provides support for asset packages

Walgelijk.Physics

Query and collision functionality

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.29.2 139 9/12/2024
0.29.1 282 9/7/2024
0.29.0 220 9/4/2024
0.27.0 81 8/28/2024
0.26.2 132 8/24/2024
0.26.1 108 8/23/2024
0.26.0 132 8/23/2024
0.25.0 112 8/19/2024
0.24.6 152 7/3/2024
0.24.5 79 7/3/2024
0.24.4 101 6/6/2024
0.24.3 86 6/5/2024
0.24.2 82 6/4/2024
0.24.1 94 6/2/2024
0.24.0 148 5/26/2024
0.23.7 93 5/22/2024
0.23.6 119 4/27/2024
0.23.5 161 4/22/2024
0.23.4 201 4/20/2024
0.23.3 153 4/4/2024
0.23.2 138 4/3/2024
0.23.1 97 4/2/2024
0.23.0 106 3/27/2024
0.22.0 147 3/17/2024
0.21.9 117 3/4/2024
0.21.8 130 3/2/2024
0.21.7 167 2/21/2024
0.21.4 103 2/21/2024
0.21.3 162 1/29/2024
0.21.2 106 1/29/2024
0.21.1 94 1/29/2024
0.21.0 127 1/29/2024
0.20.0 122 1/28/2024
0.19.5 131 1/27/2024
0.19.4 92 1/27/2024
0.19.3 104 1/26/2024
0.19.2 208 1/24/2024
0.19.1 88 1/24/2024
0.19.0 118 1/23/2024
0.18.10 277 12/20/2023
0.18.9 100 12/11/2023
0.18.8 288 11/17/2023
0.18.7 114 11/10/2023
0.18.6 243 11/4/2023
0.18.5 151 10/31/2023
0.18.4 115 10/31/2023
0.18.3 115 10/31/2023
0.18.2 93 10/31/2023
0.18.1 215 10/30/2023
0.17.0 148 10/10/2023
0.16.7 142 10/28/2023
0.16.5 107 10/12/2023
0.16.4 117 10/10/2023
0.16.3 228 10/9/2023
0.16.0 232 9/27/2023
0.15.2 181 9/25/2023
0.15.1 174 9/23/2023
0.15.0 207 9/23/2023
0.14.0 142 9/23/2023
0.13.5 284 8/24/2023
0.13.4 253 8/15/2023
0.13.3 243 7/31/2023
0.13.2 258 6/25/2023
0.13.1 120 6/23/2023
0.13.0 141 6/22/2023
0.12.1 129 6/19/2023
0.12.0 212 6/17/2023
0.11.2 149 6/14/2023
0.11.1 187 6/2/2023
0.10.11 279 5/20/2023
0.10.10 253 5/18/2023
0.10.9 259 5/15/2023
0.10.8 174 5/13/2023
0.10.7 165 5/5/2023
0.10.6 210 5/2/2023
0.10.5 141 5/2/2023
0.10.4 127 5/2/2023
0.10.3 222 4/29/2023
0.10.1 141 4/29/2023
0.10.0 344 4/29/2023
0.9.17 239 4/26/2023
0.9.16 167 4/25/2023
0.9.15 202 4/25/2023
0.9.14 169 4/24/2023
0.9.11 167 4/23/2023
0.9.10 175 4/23/2023
0.9.9 390 4/22/2023