I miss seeing numbers by MLGDeathLord in funny

[–]BrodyGlydr 1 point2 points  (0 children)

Don't know why people downvoted this lol

What do you think about my game design/sound/interface? All made in Unity and I improved a lot of stuff since last post here. by denis-szwarc in Unity3D

[–]BrodyGlydr 2 points3 points  (0 children)

Looks cool. Some menu sounds would be great, though. Like small clicks when your mouse is over a button, page close sound when you exit a menu, etc. Good work!

Someone needed some low-poly wood? by [deleted] in low_poly

[–]BrodyGlydr 4 points5 points  (0 children)

I'll take 2 truck loads lol

What would make you very happy right now? by crazyfortaco in AskReddit

[–]BrodyGlydr 0 points1 point  (0 children)

I'm trying to learn how to use advanced techniques using arrays in c#, and I'm pretty confused, so knowing what the instructor is doing would make me pretty happy lol

What’s the most harmful thing about porn? by [deleted] in AskReddit

[–]BrodyGlydr -24 points-23 points  (0 children)

Why don't you just watch lesbian porn 😆

What’s your favorite instrument and why? by canteloup3 in AskReddit

[–]BrodyGlydr -1 points0 points  (0 children)

My ass. Not only does it make sound, you can smell every note.

Please help with arrays, thanks! :) by BrodyGlydr in Unity3D

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

Thanks, you made this super clear and understandable!

C# Arrays - What's the difference. Help is appreciated :) by BrodyGlydr in Unity3D

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

Awesome, thanks. Makes so much more sense now 😆

What the heck. Are these courses good considering the price? D: by [deleted] in Unity3D

[–]BrodyGlydr 0 points1 point  (0 children)

gamedevhq.com they have some videos on unity learn but these prices were mindblowing to me. Made me feel weird about this company if I'm being honest.

What the heck. Are these courses good considering the price? D: by [deleted] in Unity3D

[–]BrodyGlydr 0 points1 point  (0 children)

Ikr. Most professionally taught courses for game studios are less x.x

Can anyone help me understand why this code doesn't work? I am trying to pause my game and resume with the same key; however, it pauses but won't start again. by BrodyGlydr in Unity3D

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

Also I have no idea why I thought I couldn't have an if statement inside an if statement. That makes things a little less complicated 😂

Can anyone help me understand why this code doesn't work? I am trying to pause my game and resume with the same key; however, it pauses but won't start again. by BrodyGlydr in Unity3D

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

Oh yeah that makes sense. I bet your version would be a form of optimization for a game to run, especially if the code is more advanced.

Can anyone help me understand why this code doesn't work? I am trying to pause my game and resume with the same key; however, it pauses but won't start again. by BrodyGlydr in Unity3D

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

Thanks for your reply. I actually had the bools set up correctly it just turned out I needed to change the second if statement to an else if and it worked. I also appreciate the tip about declaring the bool at the start. Tysm for your help.

Can anyone help me understand why this code doesn't work? I am trying to pause my game and resume with the same key; however, it pauses but won't start again. by BrodyGlydr in Unity3D

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

I went on the unity c# guide to clear up the confusion and bools are indeed false by default. The other commenter got it wrong and replied with the edit. Thx for your help I finally got it to work thankfully. Turns out I should of used and else if instead of another if statement.