Noel Berry

@noelfb.bsky.social

Sometimes, when I'm in the right mood, I make video games and art. Or something. Made Celeste with friends, working on City of None and Jumper at EXOK. www.noelberry.ca

I have this old twitter gif from @noelfb.bsky.social saved up for the opposite case, using "↩️" when it's ended, it's neat. I think one mandatory sliced dialog at the start (or just written in a way that leaves no doubt the character has more to say) + feedback when there's no more is the way to go.

If you're a Patreon creator, go to your Relationship Manager and use this filter to see if anyone's subscribed through the iOS app. If they are, you can send them a DM through the site asking them to switch to subscribing through a browser.

Bild
Part Time Yeen@parttimeyeen.bsky.social · 6mo ago

Any of you using the ios version of Patreon to support me, switch to the browser version instead, cuz the apple fees have actually taken over 3000 usd from me in the course of a year

opening up some commissions slots to raise funds cover my rent! really struggling to find work. DM me if you are interested! 50$ USD: chibi model / single colour background 100$ USD: model / custom background 150$ USD: model / custom background + 3D printable file #blender3d #b3d #gamedev

BildBildBildBild

bro they laid off the Doom 2016 developers. that's like if you laid off the studio that made arguably one of the best first-person shooters of all time, like Doom 2016

I don't care that much about physical media but I do care about owning the stuff I buy ... if you get rid of physical media entirely you should have to give me a DRM-free format I can purchase digitally and keep on an old hard drive

there isn't a problem with the game's industry. there's a problem with every industry and every publicly traded company. getting a "nice CEO who cares" or whatever won't fix anything until things are addressed at a more fundamental societal level. the system will always drive towards this behavior.

this just messed me up for a while because apparently C# record structs will not create an parameterless constructor unless it is explicitly defined and `new Struct()` will be the same as `default`. this is wacky dude

screenshot of the following code:

public readonly record struct PropertiesA(int Weight = 10);

public static void TestA()
{
	var x = new PropertiesA();
	var y = default(PropertiesA);

	// this will print 0, 0
	Console.WriteLine($"{x.Weight}, {y.Weight}");
}

public readonly record struct PropertiesB(int Weight = 10)
{
	public PropertiesB() : this(10) {}
}

public static void TestB()
{
	var x = new PropertiesB();
	var y = default(PropertiesB);

	// this will print 10, 0
	Console.WriteLine($"{x.Weight}, {y.Weight}");
}

no no you don’t understand, we only used AI for the part of the production pipeline where we didn’t want to pay employees, it’s different

sega saying they have a new sonic "indie game" kinda hits home that "indie" is just a vibes-based label (I mean it has been for like 10+ years it's just funny)