Can I Create 2D Platformer Games Using C++?

0
0
Asked By TechWhiz42 On

I've heard that while C++ is great for heavy 3D games, people recommend using C# for 2D games. I'm currently learning C++ and I'm wondering if I should switch to C# or stick with C++. Is C++ a viable option for developing 2D platformer games?

3 Answers

Answered By CreativeCoder88 On

From a high-level perspective, you can use almost any language for game development. C++ does have a steeper learning curve compared to C#, which is more forgiving and handles a lot of the underlying complexities for you. It really comes down to what you're more comfortable with!

Answered By PixelPioneer56 On

You can make 2D games with virtually any programming language, including C++. People often say to use C# in Unity for 2D because it's easier and more user-friendly for beginners. If you're already comfortable with C++, look into game engines that let you use C++ for 2D.

Answered By DevDude3 On

Of course, you can create 2D platformers using C++. Just remember, if you go with a pre-made engine like Unreal or Unity, they're typically optimized for C# or other scripting languages, so just be aware of that context.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.