diff --git a/content/posts/newsletter-015/index.md b/content/posts/newsletter-015/index.md index ae886be50..68f5fc32f 100644 --- a/content/posts/newsletter-015/index.md +++ b/content/posts/newsletter-015/index.md @@ -231,6 +231,15 @@ shops, character creation, and a few other features: [Antorum Online]: https://ratwizard.dev/dev-log/antorum [@dooskington]: https://twitter.com/dooskington +### Project YAWC + +![An in-progress game of Project YAWC.](yawc.png) + +Project YAWC is a turn-based strategy game in the style of Advance Wars in +development by junkmail. October saw the release of Alpha 3, including +dynamically generated info cards and minor networking changes. For inquiries or +if you are interested in playtesting, contact projectyawc(at)gmail.com. + ### [Power Kick] ![Power Kick](power-kick-shot.png) @@ -435,11 +444,11 @@ There were a lot of additions in this update and a small breaking change. ```rust let v = vec4(1.0, 2.0, 3.0, 4.0); - + // Reverse elements of `v`. // If SIMD is supported this will use a vector shuffle. let wzyx = v.wzyx(); - + let yzw = v.yzw(); // Swizzle the yzw elements of `v` into a `Vec3` let xy = v.xy(); // You can swizzle from a `Vec4` to a `Vec2` let yyxx = xy.yyxx(); // And back again diff --git a/content/posts/newsletter-015/yawc.png b/content/posts/newsletter-015/yawc.png new file mode 100644 index 000000000..1fd8c01f0 Binary files /dev/null and b/content/posts/newsletter-015/yawc.png differ