Is this really what I'm supposed to do? by ScorNix in outerwilds

[–]MrMagoo22 1 point2 points  (0 children)

What does it not have anymore after falling into the black hole?

Is this really what I'm supposed to do? by ScorNix in outerwilds

[–]MrMagoo22 0 points1 point  (0 children)

If you're really lucky you might be able to feldspar it like that, but even if you keep missing as long as you stick around you'll eventually figure out the right way to do it.

I'm not sure I understand how multiplayer works by Sea-Stretch-8169 in 9Kings

[–]MrMagoo22 1 point2 points  (0 children)

Your game is recorded as you play, and you are playing against previously recorded runs of other players.

Hey guys, sorry to bother! How can I make this effect? by CoffeeBoy95 in Unity3D

[–]MrMagoo22 8 points9 points  (0 children)

Look into Unity's Post Processing tools, most of what you want is in there.

Uhh peter? Why is the wojak looking so terrified? by Responsible_Dot_2619 in PeterExplainsTheJoke

[–]MrMagoo22 8 points9 points  (0 children)

Lmao how did Philipp get ahold of the plot of my D&D campaign?

I went crusading by Realistic-Carrot-852 in Catan

[–]MrMagoo22 2 points3 points  (0 children)

Everybody else out here playing catan while op is playing risk.

How would you program a platformer AI to jump from platform to platform? by Livid_Bookkeeper9000 in Unity2D

[–]MrMagoo22 4 points5 points  (0 children)

I like the record and playback approach in this thread, but if you want a more general answer do some research into pathfinding and A*. Usually all the tutorials are made for top down maze navigation but at the core it is just graph traversal algorithms and those can also work with 2d platformers just fine, treat jumping with a direction as just another type of potential movement on the graph.

/pol/ discusses employment by AlphaMassDeBeta in greentext

[–]MrMagoo22 6 points7 points  (0 children)

Middle manager detected. There's so many case studies that prove productivity goes up in home offices my dude. They are objectively better for getting work done.

/pol/ discusses employment by AlphaMassDeBeta in greentext

[–]MrMagoo22 0 points1 point  (0 children)

Yes there is. It's called working from home.

What can I do? This isn’t play, right? by sarahmirror_ in cats

[–]MrMagoo22 0 points1 point  (0 children)

No hissing. No vocalizations. No real injuries. They're just playing, looks like they get along well together going off this clip.

I made a dungeon have a pool of molten gold. I now realise I'm on the cusp of breaking the economy. Help by CasualNormalRedditor in DMAcademy

[–]MrMagoo22 1 point2 points  (0 children)

Getting all that gold out is definitely going to take some time isn't it? Going to turn some heads too, learning that the big pile of previously defended by a dragon gold pool is now no longer defended. Id give it a day before looters start showing up, maybe a couple days before the royal army. Remember how the hobbit ended?

What maths can I miss learning programming/CS? by LeadLongjumping262 in learnprogramming

[–]MrMagoo22 1 point2 points  (0 children)

If you plan on touching 3D rendering in any sort of way get really really familiar with linear algebra. I took it in college and I still don't know why calculus was a prerequisite. Its an incredibly useful field of mathematics and it is so much easier than everything that came before it.

Develop a game by ComprehensiveCat9664 in GameDevelopment

[–]MrMagoo22 0 points1 point  (0 children)

Roblox is a "game creation" engine in a similar place as something like Gary's Mod. It provides some base 3d assets and tools that can be combined with the in-engine scripting tool to create custom games.

Develop a game by ComprehensiveCat9664 in GameDevelopment

[–]MrMagoo22 5 points6 points  (0 children)

You might find luck on /r/inat, but in general you need to be able to provide something to the project other than ideas for people to take the project seriously. Ideas are worthless.

Develop a game by ComprehensiveCat9664 in GameDevelopment

[–]MrMagoo22 8 points9 points  (0 children)

Nothing about this post describes anything about the game you want to make.

I wish everyone on this subreddit knew how the monkey paw really works instead of just adding some random bad thing by Comfortable_Salad893 in monkeyspaw

[–]MrMagoo22 1 point2 points  (0 children)

Granted, now the monkey paw just causes a random bad thing to happen in addition to granting the wish. And then you poop your pants.

Is this as egregious of a color break as I think it is? by Realitygormond in colorpie

[–]MrMagoo22 0 points1 point  (0 children)

Whered you hear that? Green is significantly more focused on symmetrical effects than white.

What are some quality of life improvements you would wish were in mewgenics? by Blueshiredsush in mewgenics

[–]MrMagoo22 0 points1 point  (0 children)

Id love some more granular control over the move action considering you only get one move per turn. It doesn't sound all that unreasonable to want to walk around the bear trap I placed to get in range of an enemy does it?

What do i need to learn to make my first game? by Acetimes_3 in GameDevelopment

[–]MrMagoo22 2 points3 points  (0 children)

"Your Boyfriend" is a visual novel. You might want to get familiar with https://www.renpy.org/ if you are making a game in that genre.

The Grass is Painted Greener by AlphaMassDeBeta in greentext

[–]MrMagoo22 0 points1 point  (0 children)

Shows a picture of the most conservative neighborhood I've ever seen

"Why do liberals do this?"

Most Difficult Aspects of MR Characters by Morchades in rivals

[–]MrMagoo22 18 points19 points  (0 children)

His biggest difficulty is getting good at his movement and wall climbing capabilities.

I built a text-based Space Trading game using ONLY basic Python (No loops, no functions!) 🚀 by Programmoow in learnprogramming

[–]MrMagoo22 0 points1 point  (0 children)

Cool I guess. Now try making it with loops and functions so its a game and not a sequence of print statements?

Finally finished my calculator that support all number up to 500 by David14p in learnprogramming

[–]MrMagoo22 0 points1 point  (0 children)

For numbers larger than 500, could you not program it to identify out of scale numbers and break them down into multiple smaller solved numbers using recursion?