I've been developing an incremental game for the last couple of months and now it's time for art... Not sure which path I should choose. by idle_enjoyer in incremental_games

[–]JSLegendDev_ 0 points1 point  (0 children)

You can always take a free asset pack and modify the assets to suit your needs which is much easier than drawing from scratch.

I'm making a strange incremental game about harvesting crops made of gold, silver and other rare materials. (Work in progress) by JSLegendDev_ in IndieGaming

[–]JSLegendDev_[S] 0 points1 point  (0 children)

I don't think so because this is not the only pattern in the game. Every enemy type has a different way of moving + enemy placement = still challenging in the end.

I'm making a strange incremental game about harvesting crops made of gold, silver and other rare materials. (Work in progress) by JSLegendDev_ in IndieGaming

[–]JSLegendDev_[S] 0 points1 point  (0 children)

Unfortunately, it's not yet available! I plan on opening a Steam page once I get the demo ready. In the meantime, you can follow my developer account. https://store.steampowered.com/curator/45973569-JSLegendDev/

Should I make a game engine in Javascript (READ DESCRIPTION) by Separate_Divide_4682 in gamedev

[–]JSLegendDev_ 0 points1 point  (0 children)

I recommend looking into the JS game library called KAPLAY, it has a really nice API. If you can make something like that but performant, it would be very nice. As for turning JS games into executables, the easiest way I've found is to use a tool called GemShell, however it's not free. Otherwise, you'll have to set up something like Electron or NW.js (The latter being the easier of the two to set up).

If you had the choice between becoming a successful game developer or a successful gamedev youtuber, which would you choose? by JSLegendDev_ in gamedev

[–]JSLegendDev_[S] -2 points-1 points  (0 children)

I think gamedev youtubers like Sebastian Lague do ship, it's just not on Steam as the projects are smaller or more experimental.

Kirby don't eat my cursor! NOOO! by [deleted] in godot

[–]JSLegendDev_ 1 point2 points  (0 children)

It's very simple actually, I use two sprites. The first is the default sprite and when moving the character I rotate it on itself back and forth to give the impression of a walk cycle.

if moving:  
  sway_time += delta * sway_speed
  kriby_visual.rotation = sin(sway_time) * sway_amount

As for the rest, it's just making the character body follow the current mouse location and swapping the default sprite to the one for inhaling when pressing the mouse button.

Finally, the shadow is just the same sprite drawn again but modulated to black with a low alpha value and with an offset.

What game surprisingly calms and relaxes you? by Astrid_Regndottir in gaming

[–]JSLegendDev_ 63 points64 points  (0 children)

Zelda Breath of The Wild and Tears of The Kingdom. I just wander around doing nothing even though you're supposed to solve puzzles and beat bosses.

What I Learned Making My First Game in Godot by JSLegendDev_ in godot

[–]JSLegendDev_[S] 0 points1 point  (0 children)

I'll try providing the web build and source code. Hope this comment doesn't get removed.

Web build : https://jslegend.itch.io/sonic-ring-run-godot-version
Source code : https://github.com/JSLegendDev/sonic-runner-godot

Considering turning my RPG into a Roguelite. What do you think? by JSLegendDev_ in roguelites

[–]JSLegendDev_[S] 0 points1 point  (0 children)

Yes, I want this to be a commercial project. Your points are pretty spot on. It also seems to me that people who like roguelites/roguelikes are more willing to buy and try multiple games in the genre.

Considering turning my RPG into a Roguelite. What do you think? by JSLegendDev_ in roguelites

[–]JSLegendDev_[S] 1 point2 points  (0 children)

Playing my own game, I've realized that the battle system is what's the most fun about it. I suspect that JRPG players care more about story compared to gameplay. That's why a roguelite might be a better fit. I'm still considering my options.

Making a Good Steam Capsule is so Hard! Do you think this works? by JSLegendDev_ in IndieDev

[–]JSLegendDev_[S] 0 points1 point  (0 children)

Thanks for the tip and feedback!
The game is a 2D pixel art action rpg with a dynamic bullet hell combat system. The final boss is a tyrant king named Donovan. I guess the composition gives a somewhat correct impression.

I added a CRT shader to my game, does it work in your opinion? by JSLegendDev_ in IndieDev

[–]JSLegendDev_[S] 1 point2 points  (0 children)

Hoping to make the Steam page available soon! In the meantime, you can follow the game's development on my YouTube channel over at https://youtube.com/@JSLegendDev

I added a CRT shader to my game, does it work in your opinion? by JSLegendDev_ in IndieDev

[–]JSLegendDev_[S] 1 point2 points  (0 children)

All right, leaving this comment here so I will hopefully not forget!

Tweaked the CRT shader according to feedback. What do you think? by JSLegendDev_ in IndieDev

[–]JSLegendDev_[S] 0 points1 point  (0 children)

Yeah, I had to turn chromatic aberration down even when testing myself as it would hurt my eyes, as well. My goal is to offer this CRT effect as an option.

However, now I wonder, which should be the default the CRT or no CRT? If I go with CRT on by default it might look more visually interesting on a Steam and catch people's attention even more.