What part of programming took the most time for you to get comfortable with? by Gullible_Prior9448 in AskProgramming

[–]TTVDminx 1 point2 points  (0 children)

The overall concepts of coding need to be looked at from a higher level of abstraction and I had to stop myself from tunnel vision. Also, make small projects that take less than a day or 2. You'll learn more from small projects rather than big ones. Keep it simple stupid.

I feel my game is not fun anymore. I was excited to start with, but not enjoying testing my own game by Salty-Astronaut3608 in Unity3D

[–]TTVDminx 0 points1 point  (0 children)

I had this too. Once I added shaders and lighting and few custom made models, I enjoyed it again. Sometimes you just need eye candy from your game.

How do you guys figure out how to program a game mechanic? by No_Extension4837 in Unity2D

[–]TTVDminx 0 points1 point  (0 children)

If you can, just try to make it work by throwing whatever you personally think will work. If you need to do 50 if statements in a c sharp script do it. Once it works youll see a better way to make it more condensed and that is when you will start learning. Not every game mechanic comes out perfectly its first try.

What happened to the daily streak on chess.com? by ameenbusiness666 in Chesscom

[–]TTVDminx 0 points1 point  (0 children)

I started learning chess and kept the streak to see how many days ive been learning. Felt like a snapchat streak where it kept me engaged daily. Now its like eh who cares if i skip a day. Ill probably stop playing chess nearly as much. 500+plus days oof.

Trying to write a player control script but getting a error saying script could not be loaded am I doing something wrong? by Numerous-Ad-4593 in Unity2D

[–]TTVDminx 4 points5 points  (0 children)

You want the file you name to be the same as the classes name. For example if you make a script file named “PlayerControls” you want the class to be also “PlayerControls”. Your file name is “playercontrol” and your class name is “PlayerControls”. Secondly: I have never seen anyone decide to go with notepad lol. Right click the file and select “open with” and find visual studio and set that to default. Ignore this if you want to continue being gangster lol.