@@ -178,15 +178,15 @@ You can find the latest update [here][arcade-cabinet-update-thread].
178
178
([ Steam] [ hgs_steam ] , [ Facebook] [ hgs_facebook ] , [ Discord] [ hgs_discord ] )
179
179
is a realistic sailing/foiling inshore simulator in development for PC/Steam
180
180
that will put you in the driving seat of modern competitive sailing.
181
- Hydrofoil Generation is based on a custom made DirectX 11 based engine in
181
+ Hydrofoil Generation is based on a custom- made DirectX 11 based engine in
182
182
Rust.
183
183
184
184
June saw a lot of features added to the game, most notables being "New TV
185
185
Overlays", "Control Assists", "Ropes Rendering" plus several physics
186
- improvement . Stefano Casillo, the developer went through all of them in
186
+ improvements . Stefano Casillo, the developer went through all of them in
187
187
a recent [ devlog] [ hgs_devlog ] .
188
188
189
- Work on July will focus on the physics implementation of a new boat, a
189
+ Work in July will focus on the physics implementation of a new boat, a
190
190
foiling multihull coming with her own set of new challenges.
191
191
192
192
Hydrofoil Generation is targeting a Q4 2022 Early Access release on Steam.
@@ -211,14 +211,14 @@ Features:
211
211
- Discover new monsters and equipment the deeper you go.
212
212
- Hunger and regeneration: stay fed and stay healed!
213
213
- Choose between graphical tiles and ASCII display.
214
- - Menu-based UI with hot keys .
214
+ - Menu-based UI with hotkeys .
215
215
- Auto-run to quickly follow corridors and cross open space.
216
216
- Save and load system.
217
217
- New Game Plus mode!
218
218
219
219
The source code is complemented by the
220
220
[ RuggRogue Source Code Guide] [ ruggrogue-book ] ,
221
- a 23-chapter technical web book covering the ideas, algorithms and structure of
221
+ a 23-chapter technical web book covering the ideas, algorithms, and structure of
222
222
the code.
223
223
224
224
_ Discussions:
@@ -245,7 +245,7 @@ This month the last planned port has been completed; the games are:
245
245
- Soccer (Sensible Soccer clone, ported to [ Fyrox] ( https://github.com/FyroxEngine/Fyrox ) )
246
246
247
247
A Bevy ECS tutorial, based on Rusty Roguelike, has been published, and it's
248
- announced on this newsletter.
248
+ announced in this newsletter.
249
249
250
250
[ Rust Game Ports ] : https://github.com/64kramsystem/rust-game-ports
251
251
[ Saverio Miroddi/@64kramsystem ] : https://twitter.com/64kramsystem
@@ -280,11 +280,11 @@ Source available on [GitHub][vetovoima_github].
280
280
281
281
[ Botnet] is an upcoming programming-based multiplayer game,
282
282
where you write scripts (compiled to WebAssembly) to control robots.
283
- Coordinate your bots to gather resources, build new industry ,
283
+ Coordinate your bots to gather resources, build new industries ,
284
284
and expand your control of the server.
285
285
286
286
This month saw the start of the project, and a majority of the foundational
287
- code written. Next month we'll be adding more features, and aim to flesh out
287
+ code was written. Next month we'll be adding more features, and aim to flesh out
288
288
the game beyond [ basic pathfinding and resource harvesting] [ botnet_example_bot ] .
289
289
290
290
Interested in contributing? Head over to the
@@ -393,13 +393,13 @@ The game is built on the [Emerald Game Engine].
393
393
394
394
![ ggez logo] ( ../005/ggez-logo-maroon-full.svg )
395
395
396
- [ ggez] by [ @icefoxen ] , [ @nobbele ] and [ @PSteinhaus ] is a cross-platform game
396
+ [ ggez] by [ @icefoxen ] , [ @nobbele ] , and [ @PSteinhaus ] is a cross-platform game
397
397
framework for making 2D games with minimum friction. It aims to implement an
398
398
API based on the LÖVE game framework.
399
399
400
400
This version has finally moved ggez away from pre-ll gfx and into the world
401
- of [ wgpu] ! This hopefully means less bugs, greater stability and easier
402
- maintainability at the cost of some low performance devices such as the
401
+ of [ wgpu] ! This hopefully means fewer bugs, greater stability, and easier
402
+ maintainability at the cost of some low- performance devices such as the
403
403
Raspberry Pi.
404
404
405
405
As for the user-facing API:
@@ -468,7 +468,7 @@ focused on portability and low-end platform support.
468
468
469
469
In versions prior to 0.3, it was virtually impossible to integrate, for
470
470
example, a big in-app payments or advertisement SDK into a Miniquad Android
471
- game. 0.3 has solved this, giving the possiblity to interop with any Java code.
471
+ game. 0.3 has solved this, giving the possibility to interop with any Java code.
472
472
The developer has posted [ a write-up of this functionality] [ miniquad-java ] on
473
473
the macroquad site.
474
474
@@ -628,7 +628,7 @@ low-resolution, fixed-width aesthetic is desired.
628
628
629
629
The psf2 crate parses font data, exposing font size, glyph lookup, and iterators
630
630
to traverse a glyph's bitmap for easy rendering. Due to its limited scope, it is
631
- much smaller and faster than conventional text rasterizers, but cannot support
631
+ much smaller and faster than conventional text rasterizers but cannot support
632
632
variable-width, anti-aliased, or shaped text.
633
633
634
634
[ psf2 ] : https://github.com/Ralith/psf2
@@ -654,7 +654,7 @@ cleaner and smaller code.
654
654
[ glam] is a simple and fast linear algebra crate for games and graphics.
655
655
656
656
This month version 0.21 of glam was released. Because glam is not a generic
657
- library, when support was added for ` f64 ` , ` i32 ` and ` u32 ` types back in glam
657
+ library, when support was added for ` f64 ` , ` i32 ` , and ` u32 ` types back in glam
658
658
0.12, macros were used internally to avoid a lot of code duplication. This
659
659
unfortunately obfuscated the internals of glam for anyone who needed to view the
660
660
source.
@@ -675,7 +675,7 @@ functions have also been made `const fn` removing the need for macros to create
675
675
[ kajiya] by [ @h3r2tic ] is an experimental real-time global illumination
676
676
renderer.
677
677
678
- In June, a long-standing branch has landed, bringing with it a complete
678
+ In June, a long-standing branch landed, bringing with it a complete
679
679
overhaul of indirect lighting. The new implementation uses spatiotemporal
680
680
reservoir resampling (ReSTIR) and a novel irradiance cache, bringing forth
681
681
larger scenes, quicker response to lighting changes, and less noise.
0 commit comments