Develop Games Using VS Community Instead Of Unity & UE4? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Develop Games Using VS Community Instead Of Unity & UE4?

Hello Everyone!!! I Want To Make 3D Games Like COD Or Mario Or Other Games Using DirectX Or OpenGL For Making Game Graphics And Scripting For Let Character Move , Can I Do It? Or I Need Other Tools? Can VS Community Import Objects(obj Files)? Can I Import Other Languages In The Same Scripting Files? Answers Please!!!

18th Dec 2018, 9:48 AM
Rabia Alhaffar
Rabia Alhaffar - avatar
3 Answers
+ 2
Hey, so you really can't just "import" an obj file (or any other 3D model) into your project. You would need to create the class that would read the values from your 3D model (obj file). A common library that does the hard work for your is Assimp. But you can make your own custom OBJ (or any other 3D model file format) file loader. That would be difficult cause youll need to implement a way to read the vertices/ normals/ texture coordinates/ and faces (indices). You can use OpenGL/Vulkan or you can make the 3D game engine from complete scratch just using c++ and no API. Yes you would be able to make your character move if you used OpenGL. You can do anything with any coding language. You can use Codeblocks or Visual Studio as your IDE. Hope this helped.
28th Jun 2019, 2:09 AM
Gamer Bros
Gamer Bros - avatar
+ 5
Thank You InvBoy!!!
19th Dec 2018, 6:57 PM
Rabia Alhaffar
Rabia Alhaffar - avatar