media and publishing settings

This commit is contained in:
Ell 2021-03-18 20:40:04 +01:00
parent 1ccfa023fa
commit 1995ebcbbb
10 changed files with 22 additions and 2 deletions

12
.config/dotnet-tools.json Normal file
View File

@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"gamebundle": {
"version": "1.3.1",
"commands": [
"gamebundle"
]
}
}
}

View File

@ -95,7 +95,9 @@ namespace GreatSpringGameJam {
} }
}); });
buttons.AddChild(new VerticalSpace(10)); buttons.AddChild(new VerticalSpace(10));
buttons.AddChild(new Button(Anchor.AutoLeft, new Vector2(245, 50), "View on itch")); buttons.AddChild(new Button(Anchor.AutoLeft, new Vector2(245, 50), "View on itch") {
OnPressed = e => Process.Start(new ProcessStartInfo("https://ellpeck.itch.io/a-breath-of-spring-air") {UseShellExecute = true})
});
buttons.AddChild(new Button(Anchor.AutoInlineIgnoreOverflow, new Vector2(245, 50), "View source") { buttons.AddChild(new Button(Anchor.AutoInlineIgnoreOverflow, new Vector2(245, 50), "View source") {
PositionOffset = new Vector2(10, 0), PositionOffset = new Vector2(10, 0),
OnPressed = e => Process.Start(new ProcessStartInfo("https://git.ellpeck.de/Ellpeck/GreatSpringGameJam") {UseShellExecute = true}) OnPressed = e => Process.Start(new ProcessStartInfo("https://git.ellpeck.de/Ellpeck/GreatSpringGameJam") {UseShellExecute = true})

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<PublishReadyToRun>false</PublishReadyToRun> <PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation> <TieredCompilation>false</TieredCompilation>

BIN
Media/Banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
Media/Cover.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
Media/Overworld.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
Media/SnowBlower.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
Media/Title.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
Media/WateringCan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

6
Publish.bat Normal file
View File

@ -0,0 +1,6 @@
cd GreatSpringGameJam
dotnet gamebundle -wlm
butler push bin/Bundled/win ellpeck/a-breath-of-spring-air:win --fix-permissions
butler push bin/Bundled/linux ellpeck/a-breath-of-spring-air:linux --fix-permissions
butler push bin/Bundled/mac ellpeck/a-breath-of-spring-air:mac --fix-permissions