1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Add hint to standalone version in game

This commit is contained in:
tobspr
2020-05-23 12:34:01 +02:00
parent c502ecad0c
commit 8627b4e1f9
5 changed files with 37 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
#ingame_HUD_Watermark {
position: absolute;
background: uiResource("get_on_itch_io.svg") center center / contain no-repeat;
@include S(width, 110px);
@include S(height, 40px);
@include S(top, 5px);
pointer-events: all;
cursor: pointer;
@include S(left, 200px);
transition: all 0.12s ease-in;
transition-property: opacity, transform;
transform: skewX(-0.5deg);
&:hover {
transform: skewX(-1deg) scale(1.02);
opacity: 0.9;
}
}

View File

@@ -45,6 +45,7 @@
@import "ingame_hud/debug_info";
@import "ingame_hud/entity_debugger";
@import "ingame_hud/tutorial_hints";
@import "ingame_hud/watermark";
// prettier-ignore
$elements:
@@ -66,6 +67,7 @@ ingame_HUD_DebugInfo,
ingame_HUD_EntityDebugger,
ingame_HUD_TutorialHints,
ingame_HUD_buildings_toolbar,
ingame_HUD_Watermark,
// Overlays
ingame_HUD_BetaOverlay,