Various project templates for game development using Velaptor.
For documentation on how to build games using Velaptor, please visit the Velaptor Documentation.
Installing the templates can be done using the following dotnet cli command:
dotnet new install KinsonDigital.VelaptorTemplates
To create an empty bare-bones Velaptor project, run the following command in your directory of choice:
dotnet new VelEmpty --name <your-proj-name-here>
To create a project with basic setup to render a single texture with keyboard input based movement, run the following command in your directory of choice:
dotnet new VelRenderTexture --name <your-proj-name-here>