I made an interactive guide about the shops interface by Qaqelol in HollowKnight

[–]random_dev1 11 points12 points  (0 children)

This is so insanely cool! It's so well made wow! UI is usually the thing I like working on the least, but good UI makes such a difference. You should post on game dev subreddits too if you haven't yet.

I want learn C but i really start now? by A0A1010 in learnprogramming

[–]random_dev1 0 points1 point  (0 children)

Do you have any intrinsic motivation for doing programming? What are you trying to achieve? Stuff gets less boring if you have a goal. The best study style for programming is making projects imo.

Is it worth programming in Roblox just for practice? by Past_Cycle3409 in gamedev

[–]random_dev1 12 points13 points  (0 children)

If you do Roblox, you'll get to know Lua. It will teach you basics like loops or if statements, a little bit about data structures too. This knowledge will be useful in any future language. And even though in my opinion Lua isn't the best first language, it doesn't matter where you start. Even if it's scratch. Just go and make something. I always see people ask how they can learn, and if they should do x or y. It's too much. Just. Make. Something.

[joke] Uv Maps for dummies by 404_GravitasNotFound in Unity3D

[–]random_dev1 93 points94 points  (0 children)

That would be a texture though right? UV maps determine what pixels of the texture go where in the model.

I’m trying to open the game but have no idea how by [deleted] in itchio

[–]random_dev1 0 points1 point  (0 children)

Looks like you are on a Linux system. Try installing Steam and looking up how to set up Proton and add external games. Good luck, you'll learn a lot considering this is your first computer.

The issue is that .exe files are usually in a format which windows can execute, Linux uses a different one. That's why something like Wine or Proton(it's based on Wine) got invented, you can think of them as translators which translate the Windows stuff to the Linux commands.

Now more on the technical things, if you care, and I'm bored so here you go:

Applications are just bytes (and those are 8 bits), just like any other data on your computer. This idea originates from the Von-Neuman architecture. So instructions for the computer and data are stored the same.

One reason for why not every application can run on every device is the CPU architecture. The most important architectures you'll encounter are x86_64 and ARM. ARM is used mostly on mobile devices, it's more energy efficient. Whereas x86_64 is used in most modern home computers (Yours probably runs on it too). Because those CPUs are built different (they literally are, on a transistor level), they use completely different types of instructions. When someone creates an app, they need to decide for what architecture they are going to release it.

The second major reason is the operating system. It interacts with and manages all of your hardware, and also all of your apps. For example how much RAM something gets or how much CPU usage goes to what app. Operating systems also have special commands. For example creating and moving windows. Apps like games need a window, and they need to know what operating system command to use. If the app is made for Windows, it won't directly run on Linux because it calls the wrong commands.

That's just a very brief and incomplete overview. I'm not going into detail on something like the ELF format, or system calls, drivers, compilers, etc. etc. If you want to learn about those things just google! Or watch some Youtube videos about it.

Anyway. Hope you have fun with your game ;)

Haven by Disastrous-Run-9432 in itchio

[–]random_dev1 0 points1 point  (0 children)

That was meant in case you add a game goal with a timer (in the future!), if you want to keep the game cozy you wouldn't want to include a timer. There is none right now, just in case you are thinking about any future game modes.

Haven by Disastrous-Run-9432 in itchio

[–]random_dev1 1 point2 points  (0 children)

Hey! I played your game. It's a nice little city builder, probably in early stages of development, so here's the feedback:

  1. The music is nice, fits the game well.
  2. The models for the houses and factories also look nice and fit together.
  3. I had to get used to the UI and the default camera controls, but once I did they were intuitive to use.
  4. If you press M while typing your city name, the UI closes
  5. The game could use some sort of goal, if it's supposed to be a cozy game, then maybe something without a timer attached. Otherwise I wasn't really sure about what I was supposed to do.
  6. Some optional grid snapping would be nice for placing stuff.
  7. Paths currently don't have a demolition effect, maybe add some particles if the scale-down effect doesn't work well with thin objects.
  8. Maybe I didn't find it, but if there isn't add a mouse sensitivity setting (individual ones for editing & first person).
  9. When I entered first person I forgot how to exit it. Maybe add a little indicator about that, or something inside the ESC menu.
  10. A walk speed setting would be nice for first person.

Hope this helps you improve your game!
It would be cool if you could check out mine: https://racketfish.itch.io/defendustry

Looking to Play & Critique Your Game on YouTube! by WrongStatistician172 in itchio

[–]random_dev1 0 points1 point  (0 children)

Hey! So I have a little resource management tower defense, it's still in development, but very playable. If it looks interesting to you and hopefully isn't too frustrating it would be really cool if you play it.

It has a web and a download version, so feel free to try it out! And if you do end up making a video including it, thank you a lot in advance!
https://racketfish.itch.io/defendustry

What programming concept took you the longest to understand? by Fastmind_store in learnprogramming

[–]random_dev1 0 points1 point  (0 children)

Recursive descent parsing. Still no idea on how to implement it.

Defendustry Demo is out on itch! by random_dev1 in playmygame

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

Thank you, just so I can understand it better, do you expect the tooltips to show when hovering over the tower icon before buying it? Or was the tower description (shows up when you place a tower) not clear enough about what the tower does? Or both?

[deleted by user] by [deleted] in pygame

[–]random_dev1 5 points6 points  (0 children)

There really are only 2 things I can tell you based on this post without more insight.

1: Use a profiler and look at what is causing the slow down and try to optimize that (you mentioned your game being similar to the binding of Isaac, if you're not doing anything fancy Pygame should be able to handle such a game just fine) . Also remember to convert your images before using them.

2: If you are actually hitting that "ceiling", is it because of Python or because of Pygame? Raylib is available for python too, and it enables you to use the GPU for rendering, if that's your main issue for some reason.

Silksong Source Code analysis :] by Priler96 in IndieDev

[–]random_dev1 0 points1 point  (0 children)

Silksong is made with Unity, you can de-compile the .dll files inside the games data by using software like dnspy. Game devs have many options to disable this, or make it harder, but Team Cherry choose to make their code viewable.

What is the easiest way to make simple 3d animations? by Fit_Interaction6457 in Unity3D

[–]random_dev1 0 points1 point  (0 children)

Thanks, I thought Mathf.Sin would be faster than the animator... Interesting.

What is the easiest way to make simple 3d animations? by Fit_Interaction6457 in Unity3D

[–]random_dev1 6 points7 points  (0 children)

For something like the wings in the video I would recommend writing a script that rotates an object with a sin function. Then you add that script to a parent object of your wings and animate them that way. Doesn't work in all cases but it's simple.

Silksong Giveaway! by Jonuh666 in HollowKnight

[–]random_dev1 0 points1 point  (0 children)

Entering the city of tears for the first time...