MonoGame.Extended is a set of utilities (in the form of libraries/tools) to MonoGame that makes it easier to make games. Choose what you want, the rest stays out of your way. It makes MonoGame more awesome.
Getting started
Code is distributed as NuGet packages in the form of libraries (.dll
files). You can easily install the NuGet packages into your existing MonoGame project using the NuGet Package Manager UI in Visual Studio or by using the command line interface (CLI) in a terminal.
🔧 CLI
dotnet add package MonoGame.Extended
🔨 To use the content pipeline extensions, you will need to edit your
.mgcb
file to reference the.dll
. To see an example of how to do this with NuGet see the samples at https://github.com/craftworkgames/MonoGame.Extended-samples. The important pieces are theNuGet.config
file and the.mgcb
file.
👀 To access pre-releases including rolling builds of the repository after every commit or PR commit, you can see add the NuGet feed
https://www.myget.org/F/lithiumtoast/api/v3/index.json
. See https://github.com/craftworkgames/MonoGame.Extended-samples with theNuGet.config
file for an example of how to setup the feed.
原文:https://github.com/craftworkgames/MonoGame.Extended
- 登录 发表评论