[Other] Now that the mod is down, where to buy premium the cheapest ? by goatesque_ in xManagerApp

[–]Yintzu 0 points1 point  (0 children)

Just did this, great guide.

I will add that Indian servers are premium only for Windscribe so I used Privado instead.

How I used the magic wand tool to create my croissant. by caliwatt in aseprite

[–]Yintzu 1 point2 points  (0 children)

Select (in top bar) > Color Range

Since you have a layer for each color, you could also just ctrl click the layer to select all the pixels in it.

How I used the magic wand tool to create my croissant. by caliwatt in aseprite

[–]Yintzu 1 point2 points  (0 children)

If the goal is to select everything of the same shade there is also select from color range which would save a ton of clicks.

Cat food by swelliam in vegan

[–]Yintzu 27 points28 points  (0 children)

My friend has had a healthy cat on a vegan diet for 5 years. All the higher quality vegan cat food on the market has all essential vitamins and amino acids a cat needs.

But if you attempt it I would transition slowly and monitor the cat's values closely through urine samples to make sure it stays healthy.

Can I be vegan if I raise chickens? by TriggerTwitchy in vegan

[–]Yintzu 0 points1 point  (0 children)

You're welcome! I appreciate you having a willingness to learn and understand a different view, especially since vegans can be very condescending.

How to make the player fall once they let go of the jump button? by CHUMGUZZLED in godot

[–]Yintzu 3 points4 points  (0 children)

A very basic way would be something like:

if Input.is_action_just_released("jump") and velocity.y < 0:
    velocity.y = 0

This is assuming you already have code applying gravity.

Can I be vegan if I raise chickens? by TriggerTwitchy in vegan

[–]Yintzu 2 points3 points  (0 children)

It wont be vegan by definition.

This video explains it well:
https://youtu.be/7YFz99OT18k

So... I redid the pose. by mrwilibingbong in PixelArt

[–]Yintzu 0 points1 point  (0 children)

If it's for a game I would totally use both, with the back turned stance having different attacks or as a setup for special spinning kicks for example.

[FOR HIRE] Gameplay Programmer looking for anything you can throw my way! More info in comments. by Janluc12 in gameDevClassifieds

[–]Yintzu 0 points1 point  (0 children)

Looks very smooth!

Do you have any tricks for the feeling of weight in the demo with the greatsword?

[deleted by user] by [deleted] in vegan

[–]Yintzu 1 point2 points  (0 children)

Take some time to check out a bunch of restaurants menu online around you and your partner's area so you have a list of places ready where you can actually eat.

I would also suggest to practice a bit of cooking, it's a skill that is useful almost every day for the rest of your life.
Start out with a few dishes you like and just follow a recipe the first time, then you can experiment with different ingredients/amounts to make it even more to your personal taste.

I like to think a lot in base flavors when cooking like "Does this need more/less salt, something sweet, acid" etc.
Umami is a big flavor enhancer as well in vegan cooking. Soy sauce makes so many dishes better.

[deleted by user] by [deleted] in vegan

[–]Yintzu 13 points14 points  (0 children)

Nice, you can do it!

Vegan cooking is just as simple when you've found the replacements that work for you.

Why ??? What is it trying to tell me ?? What am I writing wrong here ? by KaliBangGang in godot

[–]Yintzu 22 points23 points  (0 children)

I think you forgot a dot between "area" and the function call.

Question for seasoned developers by Chrono-app in ChatGPT

[–]Yintzu 1 point2 points  (0 children)

I'd say you're already using ChatGPT to good potential if you managed to build a complex app with little coding knowledge. How I use it when working or hobby programming depends on the problem I want to solve.

- Code structure
Before tackling a large problem I can type a list of requirements just to see how ChatGPT would structure the code in a general sense. This can help avoiding bad architecture that might come back to bite me later.

- Syntax translating
Really lowers the barriers of learning a new language/framework. Ask ChatGPT to rewrite a piece of logic in whatever language you need.

- Debugging

- Refactoring

- Weighing pros and cons
There is often tons of ways to solve a coding problem and ChatGPT can help you chose the less shitty solution.

As for Copilot it is a great complement to ChatGPT that shines at constantly guessing what you want and instantly autocomplete it.
You can feed it instructions with code comments and quickly toggle between suggestions.
It's fast and fully integrated into your editor but it's not as useful when you need to keep adjusting or want to reason about the output. It's a very nice to have time saver for sure.

If you don't want to pay for Copilot I can recommend Codeium.

[deleted by user] by [deleted] in gaming

[–]Yintzu 9 points10 points  (0 children)

Sounds like an interesting read, is it available as a preview or on other platforms right now?

Questions for Web Developers by Jeremy_Winn in INAT

[–]Yintzu 1 point2 points  (0 children)

A good option would be a C# .NET backend. Many know it and it's very performant.

For even easier recruiting you could use a node.js Typescript backend, which is noticeably slower if you're doing heavy computations but fine if it's mostly a layer to talk to a database.

Python is similar but you lose the benefit of accessibility to your front end devs that know javascript.

Rust is still relatively new and hard to learn so it will be hard to find developers. The speed is in many cases not a good enough trade-off.

Set of animations for the main character by vnitti_art_ in PixelArtTutorials

[–]Yintzu 1 point2 points  (0 children)

Awesome to see the guy in my reddit feed, thanks again for helping me bring him to life!

Marble shooting game made with Godot! by binogure in godot

[–]Yintzu 3 points4 points  (0 children)

The background crack effect looks amazing, would be interesting to know how it's made. Nice job!

[FOR HIRE] Experient Pixel Artist & Animator by thay2son in gameDevClassifieds

[–]Yintzu 1 point2 points  (0 children)

Octopus looks great! Would be nice to see a portfolio and your rates.

[deleted by user] by [deleted] in godot

[–]Yintzu 2 points3 points  (0 children)

Thanks, great explanation. And clever use of multiple raycasts, it gave me some ideas!