Is c++ great for creating games? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Is c++ great for creating games?

15th Feb 2017, 5:16 PM
matspu
matspu - avatar
3 Answers
+ 2
a=1+1 b=2 def iscppgoodforgames(x,y): if x==y: result="Yes" else: result="No" return result answer=iscppgoodforgames(a,b) print(answer)
15th Feb 2017, 5:22 PM
LordHill
LordHill - avatar
+ 1
Yep!
15th Feb 2017, 6:45 PM
Jack
Jack - avatar
0
In theory yes, but in practice it's a pretty big pain, if you are writing your own engine. In conjunction with Unreal engine it is far more friendly to a newcomer. At least don't try using raw OpenGL from the start. :) Doing most of the modern effects is pretty crazy and relies heavily on your linear algebra knowledge -- it has to be solid. If you don't trust me, try implementing tesselation algorithm yourself first before looking into books. :D
16th Feb 2017, 12:57 AM
Paul Kazakof
Paul Kazakof - avatar