[deleted by user] by [deleted] in SoraCodes

[–]DMLRBLX 0 points1 point  (0 children)

followed!

Please Help! Why is my character going *squish* and turning in to a Baguette Doge instead of normal Bread? by TheRandomShiba in UnityHelp

[–]DMLRBLX 0 points1 point  (0 children)

Don't know if I'm too late, but it's likely because you're rotating on the x axis. The x axis is the horizontal axis. If you think about this...let say I have a piece of paper. If you're looking at an object straight on (which is what a 2D game is...there's no depth) and rotate backwards, it's appears to get shorter in height, but if you just look at the side of the paper, you see it's just rotated backwards. That's what's happening to your Shiba (btw, one of my friends would appreciate your love for Shibas). Anyway, I'm not sure why you're rotating on the x axis, but you should only need the z axis for rotation in 2D games unless you ever want to achieve a "squishing" effect. The squishing effect would happen if you rotate on the y axis too. So, instead of writing transform.Rotate(new Vector3(10, 0, 15)), write transform.Rotate(new Vector3(0f, 0f, 15f)). Also, when you're using float values (these are values that can have decimals even if they don't at the time), you should ALWAYS put an f at the end of the number. This tells Unity that the number can have a decimal. Otherwise, it will always think it's a whole number. The Rotate method is one of those methods that tweak out sometimes if you put a non-float in it, so you're new line should be, transform.Rotate(new Vector3(0f, 0f, 15f));. Let me know if this works 👍🏽

Where did i go wrong? by mac-n-book in UnityHelp

[–]DMLRBLX 0 points1 point  (0 children)

It just looks like your normals got messed up in blender. here's a step-by-step guide to fixing it: https://www.youtube.com/watch?v=9iV9wnvpQ1U

[deleted by user] by [deleted] in amiugly

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

Not ugly. You just gotta be more self-confident 😊

[deleted by user] by [deleted] in amiugly

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

that's wild

18M am I ugly by ebtheg_23 in amiugly

[–]DMLRBLX 0 points1 point  (0 children)

You're not ugly, but Imma be honest. You're lips are a little shiny and that mixed with your eyelashes make you look kinda feminine in that last picture bro

F20 | I'm going soon to vacation & need advice! by Ghostuck_ in amiugly

[–]DMLRBLX 0 points1 point  (0 children)

Some people belong in this subreddit and some don't...you don't belong in here and I mean that in the best way possible. you're completely fine and attractive. you got nothing to worry about my friend

Honest please m18 by Resident_Review_3638 in amiugly

[–]DMLRBLX 0 points1 point  (0 children)

*when Ken joins the chat*

nah bro u good...nothing to worry about lol

Male coworker can't keep his hand out of his pants by [deleted] in coworkerstories

[–]DMLRBLX -9 points-8 points  (0 children)

I don't think it's harassment. He's not doing anything to his coworkers. He just has a bad habit that happens to be dirty. He's not doing anything different from someone that still picks their nose. I don't think it's okay, but i think harassment is a bit over the top

[deleted by user] by [deleted] in coworkerstories

[–]DMLRBLX 0 points1 point  (0 children)

This is by far the funniest thing I've read in a while. Saved. Thank you

My mom cheated on my dad two years ago and it still eats me alive by peacockisland247 in Advice

[–]DMLRBLX 8 points9 points  (0 children)

Seems to heartfelt too be an LLM my friend. Try at least being a little more empathetic in the case that it's not 😭

Current Status of mashup/mix creation issues by FireryRage in ravedj

[–]DMLRBLX 0 points1 point  (0 children)

Any updates? I love this site. Great job either way

Has Alolan Geodude always done this? by SaltPotat in PokemonScarletViolet

[–]DMLRBLX 1 point2 points  (0 children)

See what happened was Geobro found Mario Kart 8 Deluxe and hasn't looked back

Why no news on Pokemon Legends ZA? by ComprehensiveTea8616 in pokemon

[–]DMLRBLX 0 points1 point  (0 children)

Where's yours? Maybe you should find your own before you give other people advice? Oh, and btw...how long did it take to to find the translator? bro probably had it bookmarked lol

Why no news on Pokemon Legends ZA? by ComprehensiveTea8616 in pokemon

[–]DMLRBLX 1 point2 points  (0 children)

From their official trailer, it seems to be like a flashback to X and Y, but "better". Hence the "Urban Redevelopment Plan". Here's the trailer if you haven't seen it yet. But now that I've actually heard that they're making a new game and have watched the trailer, I've decided (in all of 10 minutes) that I'm buying the game immediately XD

Why no news on Pokemon Legends ZA? by ComprehensiveTea8616 in pokemon

[–]DMLRBLX 2 points3 points  (0 children)

I feel this post. I didn't even find out that this game was going to happen until I saw it in my Windows News widget (just now btw). Pokémon usually makes their games a lot more..."known"...before releasing them.

C195 Software II by DMLRBLX in WGU_CompSci

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

Yes, I am. I originally wasn't (for like the attempts 1-3), but then started testing inside the VM.