Question about programming that I still don't understand.

So I started programing 4 years ago. Right now I’m 17 years old, but I never really learned anything. I spent about a week learning C++ then gave up, same with java, went back to C++ and then went back to Java until I quit for about 2 years. So I’m back. About 1 month ago I decided I really wanted to learn programming this time. My high school career(or whatever you call it) is coming to an end next year so It would be nice to learn programming before College.

Now for the actually question.
Do I learn programming for Unity or C# on its on own first? I know all the basics of c# and stuff, but I’m wondering if I need to study up on Unity variables, and references.

Also because I still can’t grasp the concept of how to make a script. sigh. I shouldn’t have quit 2 years ago. I have a great game idea, I wrote the High Concept Game Document, wrote game ideas, features, lore everything. Now I actually new to make the game.

Sorry for long post!

For programming games, there are tons of options. For just Unity and C#, you are narrowing it down to a few. Here are what I think are good options:

  1. You can program games in C# without Unity - for instance, you could use MonoGame, which is what took over Microsoft XNA after they basically threw it out the window. Learn more about it on their website that I hyperlinked.

  2. You can program games in Unity. If you seriously do not know that much about programming, I would recommend this option personally. Other people might answer differently, but IMO, if you want to make a game, you should use something to help you out your first time. I have programmed games without help of an editor, but that is definitely NOT how I started out programming. Baby steps!

  3. With #2 being said, If you are seriously bold - and I honestly don’t recommend this - you could just use C# and DirectX to make games. Do realize that this is much harder, you will get frusturated to no end, you will run into many errors and want to break your computer. However! If you do start out like this, I will say that there is no other better way to actually understand programming. Start with the basics - make a text adventure game. Then, try to draw a square on the screen. Then, try to make it move. Then, make another square, have them collide, and so on…

If you have any questions, let me know.
Good luck! You will be doing awesome things no matter what you choose to do :slight_smile:

-Will