Posts

This profile is from a federated server and may be incomplete. Browse more on the original instance.

SirLich, to random
@SirLich@mastodon.gamedev.place avatar

@acegikmo on zenos paradox: "I don't remember the details, and I don't respect Zeno enough to find out" oml 😅

Honestly I bet you would really enjoy GEB. Obviously not authored by Zeno himself but he appears as a nuisance of a character

SirLich, to random
@SirLich@mastodon.gamedev.place avatar

My (tech) company just posted a photo of the Leadership Team for Leadership Week, and tagged everyone. Every face but one is young, white, and male. No women.

A woman from the Creative side of the company posts a link about diversity and says "Food for thought ;)"

I love it.

SirLich, to gamedev
@SirLich@mastodon.gamedev.place avatar
SirLich, to gamedev
@SirLich@mastodon.gamedev.place avatar

Looks like implementing Context Based Steering is on the menu for today.

I can't even really test my prototype properly anymore because enemies are just bumping into each other.

#gamedev #godotengine

SirLich, to random
@SirLich@mastodon.gamedev.place avatar

I'm currently in the process of leaving my company, and I guess they like me because they're holding me hostage based on the terms in my contract (105 days!)

Something tells me if I had been a bit shit they might have let me go a month early, which is what I asked for 💀

Damned if you do, damned if you don't!

SirLich,
@SirLich@mastodon.gamedev.place avatar

@reidrac I would get my days if I work the full length of the contract. It's the fact I'm trying to duck out a month early that opens the door to negotiation.

It's also a bit of a gray area actually. Companies in Germany must tell each other how many vacation days I took, to avoid "double dipping" if I switch companies part way through the year.

My next company is Icelandic though and they don't care! So I would be *technically allowed to take all 31 days in a row.

No prorated here.

SirLich,
@SirLich@mastodon.gamedev.place avatar

@reidrac Essentially I'm only working 6 months of the year so "fair" would be 50% of my vacation.

It's only because my next company doesn't care about PTO that I can scrape out a technicality and take 100% of my PTO for the year with my first company.

SirLich, to godot
@SirLich@mastodon.gamedev.place avatar

More art style exploration. My review: I will be SCREWED on animations.

I need to simplify and find a compromise between quality and ease of animations.

#godot #krita #art #gamedev #feedback

SirLich, to godot
@SirLich@mastodon.gamedev.place avatar

Trying to nail down an art style for my game.

My biggest worry with this style is extra pain associated with backwards facing animations. What do you think?

video/mp4

beeoproblem,
@beeoproblem@mastodon.gamedev.place avatar

@SirLich those dudes remind me of the 1 GRIT from various Dank Pods videos

I like em

SirLich,
@SirLich@mastodon.gamedev.place avatar

@beeoproblem Haha, they DO look a bit like that (I had to google it).

My weakness is definitely animation more than illustration. I will need to do some more tests with more complex creatures to see if the art style is viable.

SirLich, (edited ) to godot
@SirLich@mastodon.gamedev.place avatar

EDIT: This exists -check replies! :godot:

I wish Godot had inline scripts.

I find this most relevant with UI. For example a label that displays the name of the current level. I don't WANT to create and organize a separate .gd file for this. I want the script to just be owned by the node as part of the tscn file.

Cluttering the file system with one-off files that won't be reused doesn't feel the cleanest to me.

SirLich,
@SirLich@mastodon.gamedev.place avatar

Note: What I'm looking for is something like inline resources. Isn't it nice that you can create e.g., a LabelSettings inline, and aren't required to create a new .tres file for this resource?

Imagine if scripts worked the same way, and you would only need to save the external .gd file when you were ready to extract the code into something reusable.

You wouldn't even need to name these inline scripts. They're just... a property of the node.

hellpie,
@hellpie@raru.re avatar

@SirLich you can check the "Built-in Script" checkbox. It will store the code of the script in the .tscn file itself. The internal editor handles them "magically", external editors struggle with them tho because they are just text in a scene and not an actual script file.

SirLich, to random
@SirLich@mastodon.gamedev.place avatar

What if people were semantically versioned? I think I would be on version v4.1.0rc3 (third release candidate for the first minor update in the 4th stage of my life)

SirLich, to unrealengine
@SirLich@mastodon.gamedev.place avatar

Just had a very interesting interview.

In Unreal there is usually 10 ways to do something. It's very surreal to be asked a lot of questions about methods you're aware of but haven't used extensively because there is a perfectly good alternative that you prefer for whatever reason.

It's best not to stress though. I'm confidant in my abilities, and if that doesn't come across in an interview, then that's something I can work on separately.

#unrealengine #gamedev #interview

SirLich, to random
@SirLich@mastodon.gamedev.place avatar

Oh the agony of updating my LinkedIn profile 😔

SirLich, to godot
@SirLich@mastodon.gamedev.place avatar

My game pentamania placed 148/462 in Ludum Dare 55.

My goals were:

  • 3D ❌
  • Unique mechanics ✅
  • Music ✅
  • Fun ✅

In particular I was anxious to improve my 'FUN' score. In the end I got 131st (3.568), which is a good bit better than my prior entries :)

I was happy enough with the game that I'm working on a small post jam.

CIOSAI_tw,
@CIOSAI_tw@mastodon.gamedev.place avatar

@SirLich so proud of you!!!

heroicthehobbyist,
@heroicthehobbyist@mastodon.gamedev.place avatar

@SirLich OH! Okay, right on! I'll try again with that knowledge, thanks for letting me know.

SirLich, to gamedev
@SirLich@mastodon.gamedev.place avatar

I'm creating a turn based game with random enemy spawns, telegraphed with a sigil on the floor one turn prior.

What do you think about having a few sigils, representing difficulty (minion, normal, elite, boss), rather than making all the sigils unique (or all the same?).

For example if you see en 'Elite' sigil you won't know whether it's a heavyweight (better to stand back), or a lich (better get close to kill quick).

Is this interesting, or just annoying?

#gamedev #godot #godotengine

j5v,
@j5v@mastodon.social avatar

@SirLich How about not making them different initially, then later, depending on character skill, the player sees different symbols.

This does a few things: makes it a skill of the character, not (just) the player. It simplified the game early stages. And if your game has RPG or learned skills, it adds rewarding tactical detail when the player invested in that skill.

SirLich,
@SirLich@mastodon.gamedev.place avatar

@j5v Even better! I'm trying to add lots of roguelike elements, but struggling to come up with good skills. I like the ability of having some passive perception abilities

SirLich, to godot
@SirLich@mastodon.gamedev.place avatar

How do you do visuals for component based systems in ?

I've been having a lot of success putting behavior into components, usually with a minimal 'ai' at the root holding everything together.

Visuals seem a bit finicky though. I'm talking about things like damage particles, death effects, on-hover effects, animations, etc.

Any strategies for minimizing duplication of effort when doing visuals for component based entities?

SirLich,
@SirLich@mastodon.gamedev.place avatar

Currently what I'm considering doing is defining a bunch of "events" (probably signals, maybe callbacks) at the entity level.

So things like on_take_damage or on_idle or on_death. Whatever.

Then I can create some scripts that listen to these events (e.g., death_effect.gd). I guess the idea is these scripts could be attached to different graphical elements, placed into each enemy? So you reuse the logic, but define fresh visuals?

SirLich,
@SirLich@mastodon.gamedev.place avatar

@CIOSAI_tw It seems so finicky compared to logic.

Honestly using 'editable children' might be the best, because you can just... put the visuals (or visual slots) into the components!

Only issue is that editable children is known to cause data loss.

SirLich, to godot
@SirLich@mastodon.gamedev.place avatar

Started work on a post-jam rework of my LD55 entry!

#godotengine #godot #gamedev

SirLich,
@SirLich@mastodon.gamedev.place avatar

@0x0961h Thanks! I'm going to try adding some rogue-like aspects to it (essentially more levels, more enemies, and some power-progression for the player), and see where it goes :)

0x0961h,
@0x0961h@mastodon.gamedev.place avatar

@SirLich This is really a good base you have on your hands, so yes, more good and modern stuff with some visual polish and bam, you are ready for Steam. 😁

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • thenastyranch
  • rosin
  • GTA5RPClips
  • osvaldo12
  • love
  • Youngstown
  • slotface
  • khanakhh
  • everett
  • kavyap
  • mdbf
  • DreamBathrooms
  • ngwrru68w68
  • provamag3
  • magazineikmin
  • InstantRegret
  • normalnudes
  • tacticalgear
  • cubers
  • ethstaker
  • modclub
  • cisconetworking
  • Durango
  • anitta
  • Leos
  • tester
  • JUstTest
  • All magazines