Issue #482: cleanEdge, bacteriophage, and Dead Again

Weekly newsletter about HTML5 Game Development.
Is this email not displaying correctly?
View it in your browser.
27ee4fc9-8cd1-4951-a082-bcb47e7673fc.png

Issue #482 - March 31st 2023

If you have anything you want to share with the HTML5 game development community please let me know by sending an email to andrzej.mazur@end3r.com.
I'm also open for related sponsorship opportunities and job listings.
 

Articles:

Vampire Survivors wins Best Game at BAFTA Game Awards
God of War: Ragnarök wins six awards.
Ed Nightingale at Eurogamer

True ownership - the game economy trilemma
Asset price floor, mass market user base, progression utility - pick two.
Catalin Alexandru at Deconstructor of Fun

One John Wick 4 scene was inspired by indie shooter The Hong Kong Massacre
A circle of inspiration in action.
Gloria Levine at 80 Level

Star Citizen still hasn’t launched, but it’s facing server failures
RSI apologizes for "super rough start" to "persistent universe" alpha update.
Kyle Orland at Ars Technica
 

Tutorials:

Modernising a thousand of Phaser examples to ES6
When I started working with the Phaser examples repository, there was roughly 1.700~ examples, from which 1.298 needed some serious JavaScript renewals.
Victor Debone at javascripl

5 ways GDevelop makes it easy to get started with gamedev
GDevlop makes starting game development easier than ever before.
Marcos Codas at Ourcade
 

Events:

Webinar: Analyze player telemetry & improve customer support for gamers w/ Superblocks
Register for Superblocks’ webinar on Wednesday, April 5 at 1pm ET to learn how you can save engineering time building internal tools to monitor in-game player behavior, refund in-app purchases, & send Slack reports.

Powering the gaming industry: how creative studio 1minus1 uses Strapi to build customisable projects
 

Tools:

cleanEdge - a pixel art upscaling algorithm for clean rotations

Phaser Editor 2D v3.60 Beta 2 released with Script Nodes
 

Demos:

Bacteriophage

Reflections of lullabies

Looking up
 

Games:

Dead Again on Poki

Athena Crisis landing page

Copyright © 2023 Enclave Games, All rights reserved.
You are receiving this email because you opted in via our website.
Email Marketing Powered by Mailchimp
 unsubscribe from this list | update subscription preferences 

Key phrases

Older messages

Issue #481: Sonniss giveaway, auto snake, and Bullet Bunny

Friday, March 24, 2023

Weekly newsletter about HTML5 Game Development. Is this email not displaying correctly? View it in your browser. Issue #481 - March 24th 2023 If you have anything you want to share with the HTML5 game

Issue #480: DreamloJS, confetti gun, and SplatCat

Friday, March 17, 2023

Weekly newsletter about HTML5 Game Development. Is this email not displaying correctly? View it in your browser. Issue #480 - March 17th 2023 If you have anything you want to share with the HTML5 game

Issue #479: WebGL shadow maps, Phaser-plugin-debug-draw, and mischief universe

Friday, March 10, 2023

Weekly newsletter about HTML5 Game Development. Is this email not displaying correctly? View it in your browser. Issue #479 - March 10th 2023 If you have anything you want to share with the HTML5 game

Issue #478: Godot 4, A JavaScript Odyssey, and noise galaxy

Friday, March 3, 2023

Weekly newsletter about HTML5 Game Development. Is this email not displaying correctly? View it in your browser. Issue #478 - March 3rd 2023 If you have anything you want to share with the HTML5 game

Issue #477: Shifty, angular hitomezashi, and Shot in the Dark

Friday, February 24, 2023

Weekly newsletter about HTML5 Game Development. Is this email not displaying correctly? View it in your browser. Issue #477 - February 24th 2023 If you have anything you want to share with the HTML5

Federal judge: Border searches of cell phones require a warrant — Rarbg Is No More — and Had a call with Reddit to discuss pricing

Wednesday, May 31, 2023

Issue #1149 — Top 20 stories of June 01, 2023 Issue #1149 — June 01, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1

[New post] Microsoft .NET Code Analysis: Use the Index Operator

Wednesday, May 31, 2023

dotNetDave posted: " C# 8 introduced the index-from-end operator when accessing items in a collection. Here is an example of this prior to C# 8: return results[results.Count - 1]; In this case,

[New post] Microsoft .NET Code Analysis: Use Compound Assignments

Wednesday, May 31, 2023

dotNetDave posted: " Compound assignments have been available since .NET was released and is the preferred way to modify numbers and strings. Here is an example of the issue: var peopleCount = 0;

[New post] Microsoft .NET Code Analysis: The Importance of the readonly Modifier

Wednesday, May 31, 2023

dotNetDave posted: " The readonly modifier is used to designate fields or variables that can only be assigned once, typically during object creation or in the constructor. It is commonly employed

Hackers steal 9M dental patients' info in year's biggest reported health data breach

Wednesday, May 31, 2023

TechCrunch Newsletter TechCrunch logo The Daily Crunch logo By Christine Hall Wednesday, May 31, 2023 Today, some cybercrimes were uncovered, we found out how many of you are curious about the new

[New post] Microsoft .NET Code Analysis: Always Use Accessibility Modifiers

Wednesday, May 31, 2023

dotNetDave posted: " Accessibility modifiers are used to control the visibility of accessibility of types and members and are critical for proper Object-Oriented Programming. Here is why you need

[New post] Microsoft .NET Code Analysis: Remove Unread Private Members

Wednesday, May 31, 2023

dotNetDave posted: " As code is removed or changed in a class, often that might create unused private members such as variables, methods, properties, etc. It's important to remove them to

[New post] Microsoft .NET Code Analysis: Inline Variable Declaration

Wednesday, May 31, 2023

dotNetDave posted: " Starting with .NET 7, when calling a method with an out parameter, it's advisable to inline the variable declaration. Here is an example of the issue: double number1;if(

[New post] Microsoft .NET Code Analysis: aDD bRACES IN c#

Wednesday, May 31, 2023

dotNetDave posted: " Not adding braces {} to if statements can cause issues and readability issues. This code causes a violation: if (somelist[i] != other.somelist[i]) return false; This is how

[New post] Microsoft .NET Code Analysis: Remove Unnecessary Using Directives

Wednesday, May 31, 2023

dotNetDave posted: " I always remove unnecessary using directives for a few reasons that I discuss in detail in my coding standards book and conference session. First, let me show the issue: using