JTyler's Avatar

JTyler

@jtylermeek.bsky.social

I like to post videos of my game dev journey and talk about how chonky my cats are getting. Currently working on Project Space Rat, Project Grounded, Work in IT, and go to college at night. Send help.

40 Followers  |  45 Following  |  56 Posts  |  Joined: 12.11.2024  |  2.164

Latest posts by jtylermeek.bsky.social on Bluesky

Video thumbnail

Added a cute little moving platform to my game. Pretty happy with how it turned out on this first pass.

#IndieDev #GameDev #IndieGame

09.03.2025 18:06 โ€” ๐Ÿ‘ 17    ๐Ÿ” 4    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Post image

I'm making 8 UI icons in class this week.

For my first one I made this cute little axe and I'm actually so proud of it look how cute. ๐Ÿฅน

#GameDev #IndieDev #IndieGameDev

14.02.2025 00:30 โ€” ๐Ÿ‘ 13    ๐Ÿ” 1    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Haha I've done the same. Glad to hear it wasn't just me!

05.02.2025 23:04 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

RandomIntInRange is a pure function so it was being called by the If for the LessEqual math, and then called again by the PrintString.
So the If gets a randomInt of 36, then the print string would run and now we get a 98, for example. And if we're checking LessEqual to 50, we get false negatives.

05.02.2025 20:46 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Data Tables are your friend.

I use a data table that houses every item in the game. Entries are structures with all the data you would ever need to reference about a given item, including drop probability for example.
If you need to rebalance things later, you can do it from the table.

05.02.2025 18:42 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

I'm glad to hear I'm not the only one making simple inventory mistakes.
This particular one relates to my drop tables and probabilities.

05.02.2025 18:16 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Haha yeah pretty much.

Long story short: I was getting a random INT in Range, and then checking if that INT was less equal to a value. Output Bool to a function.

Worked perfectly.
But my Print was getting ANOTHER seperate INT in range when called. Resulting in shenanigans.

05.02.2025 18:01 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Haha yeah. The actual function was working just fine, but I was using a print string to just check the output to make sure it was good to go.
But I had the print string pull a value incorrectly. Once I fixed that, all was well.

05.02.2025 17:52 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I spent 3 hours yesterday troubleshooting a bug with a Bool error. Getting false when it should be true, true when should be false, etc.
Nothing online about it.
Was going insane.
Turns out I set my print string up wrong and was debugging a script that was never broken.

#IndieDev #GameDev #Help

05.02.2025 17:43 โ€” ๐Ÿ‘ 11    ๐Ÿ” 0    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 0

Spent 5 hours making a really nice crafting system for an #indiegame and got excited to show my friends. I realized there isn't anything to show as it's back end code that won't land with them because it just adds a box to some ui. ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ
But trust me it is REALLY good looking stuff on the back end.

02.02.2025 23:16 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Project SpaceRat - Demo Reel 01
YouTube video by Jordan Meek Project SpaceRat - Demo Reel 01

Here's a quick little demo reel of our little platformer. We've still got a lot of work to do but I'm happy to see it coming together.
#GameDev #IndieDev #IndieGame

youtu.be/UvYMLD6DsK0?...

27.01.2025 13:36 โ€” ๐Ÿ‘ 12    ๐Ÿ” 1    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
Wind Turbines Discover topics like indiedev, and the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring s...

Today I added some cute little wind turbines that can push the player and enemies around to cause some chaos. This was a fun break from all the save/load system stuff. Really enjoying myself.
imgur.com/gallery/wind...
#IndieDev #GameDev #Indie

18.01.2025 19:19 โ€” ๐Ÿ‘ 8    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Agreed. This is pretty early proto so it may not ultimately make it to production, but for now I've got this idea of a low budget top down Skyrim.

04.01.2025 03:58 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
Simple Recall Location - Album on Imgur Discover topics like indiedev, and the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring s...

I made a simple Home Recall for my point and click rpg.
Personally, I prefer no fast travel in my RPG's, however I feel like some QoL is probably for the best. I'm open to thoughts on that.
#IndieDev #GameDev #IndieGame
imgur.com/gallery/simp...

04.01.2025 00:30 โ€” ๐Ÿ‘ 11    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Well I love this.

02.01.2025 20:31 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Video thumbnail

Ignoring my absolutely horrendous UI (It will be better one day I swear!) I made a simple little destination marker for my Point and Click RPG and it's little things like that, things that I can just whip up in 30 mins or so, that make me feel like a real developer.
#IndieDev #GameDev #IndieGameDev

02.01.2025 19:43 โ€” ๐Ÿ‘ 13    ๐Ÿ” 1    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

It blows my mind that anyone can be so obsessed with what is or isn't in someone's pants that they go out of their way to be hateful about it. Definitely a good call to just block and move on.

26.11.2024 22:44 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Oh wow look it's me.

26.11.2024 18:04 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Hi! Thanks for the input I really appreciate it. I don't think our three person team is going to be able to compete with FromSoft, but I like your idea regarding having something that sets the world apart.

26.11.2024 17:54 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 0
Video thumbnail

As we get close to finishing our current project, my team and I are building out a prototype for our next project, a point and click fantasy RPG.
We're considering going with this art style, but what do you think? Does this evoke any sense of wonder?
#IndieDev #GameDev #UnrealEngine

26.11.2024 15:21 โ€” ๐Ÿ‘ 8    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

My only gripe with unreal so far is how it handles folder management.

Oh, I moved a widget blueprint to a different folder?

Congrats, ui doesn't work anymore time to restart the entire project ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

25.11.2024 19:17 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Post image Post image

10 years in the #USArmy have aged me like milk. I've loved every minute of it.

#HowItStarted #HowItsGoing

16.11.2024 13:30 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Video thumbnail

On my side project I've been trying to learn more about Landscape and just Level Design in general. Does this scene evoke any classic RPG feelings from you? Am I heading in the right direction here?

#IndieGameDev #IndieDev #GameDev

15.11.2024 22:46 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I think you're right! Awesome to see it coming along so quickly though. You've got me all inspired.

15.11.2024 22:43 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

That burst of light may be the animation looping back to the start point.

But hey the look and feel of the loop itself is great! Can't wait to see how it's iterated on!

15.11.2024 12:23 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Yeah man it's nuts.

But you learn the most lessons and get the most satisfaction from finished projects. Hang in there.

14.11.2024 22:24 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Boy do I feel that. My team mate and I have each branched off into animation and modeling respectively to try and get some decent looking stuff into our game.

14.11.2024 21:09 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Post image

Just finished up a system that dynamically replaces text in tool tips. Mainly used to read the keybinds for the game controls and display them during the tutorial and such.

Such a simple thing but man does it feel great when it works.

#indiegamedev #gamedev #indiedev #IHaveNoIdeaWhatImDoing

14.11.2024 15:27 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Post image

For #IndieDev on a team, how do you coordinate. We like Monday, but we've come a long way from an Excel spreadsheet and a group chat.

As your team has grown or shrank, have you found there were things you wish you had organized differently?

13.11.2024 19:47 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I'll keep my eyes out for the finished product. Good luck!

13.11.2024 19:27 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

@jtylermeek is following 19 prominent accounts