Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ecbd85c

Browse filesBrowse files
Add N52 update for Untitled Pixel Wizards Game (rust-gamedev#1529)
Co-authored-by: Jan Hohenheim <jan@hohenheim.ch>
1 parent b00031b commit ecbd85c
Copy full SHA for ecbd85c

File tree

6 files changed

+42
-1
lines changed
Filter options

6 files changed

+42
-1
lines changed

‎content/.editorconfig

Copy file name to clipboard
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.{md,mkdn}]
2+
trim_trailing_whitespace = false
3+
indent_style = space

‎content/news/052/index.md

Copy file name to clipboardExpand all lines: content/news/052/index.md
+26Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Feel free to send PRs about your own projects!
3131

3232
- [Announcements](#announcements)
3333
- [Game Updates](#game-updates)
34+
- [Untitled Pixel Wizards Game](#untitled-pixel-wizards-game)
3435
- [Engine Updates](#engine-updates)
3536
- [Learning Material Updates](#learning-material-updates)
3637
- [Tooling Updates](#tooling-updates)
@@ -70,6 +71,31 @@ If needed, a section can be split into subsections with a "------" delimiter.
7071

7172
## Game Updates
7273

74+
### [Untitled Pixel Wizards Game][pixel-wizards]
75+
76+
{{ embed_video(type="video/mp4", src="untitled-pixel-wizards-game.mp4",
77+
caption="Enemies now perceive, pursue and attack.. and occasionally get burned to death.") }}
78+
79+
[![A Hound chases a player, and its corpse ragdolls after it is burned to death by a fireball](untitled-pixel-wizards-game.gif)][pixel-wizards]
80+
_Enemies now perceive, pursue and attack.. and occasionally get burned to death._
81+
82+
[Untitled Pixel Wizards Game][pixel-wizards] is a local-multiplayer [Noita]-like platformer about
83+
killing baddies using spells powered by pixel physics. This month was focused on juicing up said baddies:
84+
85+
- [Pew Pew Pew][pixel-wizards-update-1]: baddies learned to shoot at players.
86+
- [Hot Pursuit][pixel-wizards-update-2]: baddies also learned to chase players! (They're real smart.)
87+
- [Status Update][pixel-wizards-update-3]: physically-simulated pixels learn to burn & poison players & baddies.
88+
- [Ragdolls][pixel-wizards-update-4]: corpses of dead baddies learn to tumble around all realistic-like.
89+
- [Fiddling with Fire][pixel-wizards-update-5]: the fire mechanic figures out how to better burn baddies.
90+
91+
[pixel-wizards]: https://slowrush.dev
92+
[Noita]: https://store.steampowered.com/app/881100/Noita/
93+
[pixel-wizards-update-1]: https://www.slowrush.dev/news/pew-pew/
94+
[pixel-wizards-update-2]: https://www.slowrush.dev/news/hot-pursuit/
95+
[pixel-wizards-update-3]: https://www.slowrush.dev/news/status-update/
96+
[pixel-wizards-update-4]: https://www.slowrush.dev/news/ragdolls/
97+
[pixel-wizards-update-5]: https://www.slowrush.dev/news/fiddling-with-fire/
98+
7399
## Engine Updates
74100

75101
### [godot-rust]
1.72 MB
Loading
Binary file not shown.

‎sass/_extra.scss

Copy file name to clipboardExpand all lines: sass/_extra.scss
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ a.btn {
121121
// A hack for image captions.
122122
// See https://stackoverflow.com/questions/19331362/using-an-image-caption-in-markdown-jekyll
123123
img + em,
124-
a:first-child + em:last-child {
124+
a:first-child + em:last-child,
125+
video + em {
125126
display: block;
126127
text-align: center;
127128
color: $grey-color;

‎templates/shortcodes/embed_video.html

Copy file name to clipboard
+11Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- {#
2+
Embed a video into a markdown file. Example usage:
3+
4+
{{ embed_video(type="video/mp4", src="my-video.mp4", caption="Some caption.") }}
5+
6+
#} -->
7+
<video controls autoplay muted loop>
8+
<source
9+
type="{{ type }}" src="{{ src }}"
10+
onerror="parentNode.parentElement.innerText = 'Sorry, this video does not exist or your browser does not support the video codec. Try a different browser!'" />
11+
</video> {% if caption %}<em>{{ caption }}</em>{% endif %}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.