Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: I want to make 3D games. (newb question alert)  (Read 3206 times)

0 Members and 1 Guest are viewing this topic.

yj1214

  • Newbie
  • *
  • Posts: 14
    • View Profile
I want to make 3D games. (newb question alert)
« on: April 12, 2015, 02:02:40 am »
If SFML only supports 2D graphics but I want to make 3D games, what do I do? How do I use 3D OpenGL with SFML? can you give me some links that could help me? thanks...

shadowmouse

  • Sr. Member
  • ****
  • Posts: 302
    • View Profile
Re: I want to make 3D games. (newb question alert)
« Reply #1 on: April 12, 2015, 11:51:43 am »
A quick search of the forums yielded this from eXpl0it3r:
Quote
the topic 3D has been discussed numerous times and the answer will never change... ::)
SFML only provides 2D functionality period.

Also OpenGL is always needed with SFML but you don't have to explicitly link it, except if you were going to do some custom drawing.
If you want 3D you can use some other simple libraries like Irrlicht or do everything on your own with SFML as window 'creator' and OpenGL.
This seems to sum things up pretty well: if you want to do 3d and use SFML, you pretty much have to do it yourself and use SFML for other parts of your program like window/audio etc.

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: I want to make 3D games. (newb question alert)
« Reply #2 on: April 12, 2015, 09:36:26 pm »
Depending on how much 3D functionality you actually need, you might be better off using a different library like Irrlicht, OGRE or CrystalSpace. A few people have also tried to combine those with SFML in the past, you could search the forum for them.
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

 

anything