Save to My Lists
Unclaimed
Unclaimed

Top Rated OGRE3D Alternatives

OGRE3D Reviews & Product Details

Daniel V.
DV
Game Developer
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

Barebones enough that I have better control on the rendering, this would be good learning tool to teach how game engines tick. Also the fact that it's free and open source, it's nice to show the engine code to show students how things actually work. Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

Ogre3D isn't really an industry standard currently and is severely outdated compared to the current tech currently. I would not use this on a production level though for hobbyist or for learning this would be a great to pick-up. For production I'd rather use the current popular engines, Untiy3D, UE4, Godot etc. Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

Look int Ogre3D if you want to make your own game engine with the ground work already laid out, or if you want more customization. This is also a great learning tool if you don't want to dive into nitty great graphics API level of work. Pretty much SFML but for 3D. Orge3d is very dated though and I don't know much companies that's using this in production. For real production work or if you just want to make games, the popular engines right now are a better choice (Unity3d, UE4, Godot, etc) Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

Haven't used Ogre3D in a long time but will probably use it in a project that will need more control or as a hobby project. Could also look into using it as a learning tool as I tech part-time as a lecturer in a university. Will still need to get back into Ogre3D as I haven't used this for years. Review collected by and hosted on G2.com.

OGRE3D Overview

What is OGRE3D?

OGRE3D is a scene-oriented, 3D engine written in C++ that is designed to help developers produce application utilizing hardware-accelerated 3D graphics.

OGRE3D Details
Discussions
OGRE3D Community
Show LessShow More
Product Description

OGRE3D is a scene-oriented, 3D engine written in C++ that is designed to help developers produce application utilizing hardware-accelerated 3D graphics.


Seller Details
HQ Location
St. Lawrence, Jersey
Twitter
@ogre3d_official
2,605 Twitter followers
LinkedIn® Page
www.linkedin.com

Recent OGRE3D Reviews

Verified User
U
Verified UserSmall-Business (50 or fewer emp.)
4.0 out of 5
"Intuitive and easy"
Pretty intuitive to use, good documentation.
Verified User
U
Verified UserSmall-Business (50 or fewer emp.)
3.5 out of 5
"Was a great first experience with graphics engines"
It gave satisfying results with lots of flexibility
Kevin S.
KS
Kevin S.Small-Business (50 or fewer emp.)
4.0 out of 5
"I liked OGRE3D because I could import 3D models and be able to program them the way I liked."
I think the camera motion and the setup are very good. It is easy to layout the map to your choosings and is easy to go to whatever coordinate you ...
Security Badge
This seller hasn't added their security information yet. Let them know that you'd like them to add it.
0 people requested security information

OGRE3D Media

OGRE3D Demo - OGRE3D_Screenshot1
OGRE3D_Screenshot1
OGRE3D Demo - OGRE3D_Screenshot1
OGRE3D_Screenshot1
OGRE3D Demo - OGRE3D_Screenshot2
OGRE3D_Screenshot2
OGRE3D Demo - OGRE3D_Screenshot2
OGRE3D_Screenshot2
Answer a few questions to help the OGRE3D community
Have you used OGRE3D before?
Yes

21 out of 22 Total Reviews for OGRE3D

3.6 out of 5
The next elements are filters and will change the displayed results once they are selected.
Search reviews
Popular Mentions
The next elements are radio elements and sort the displayed results by the item selected and will update the results displayed.
Hide FiltersMore Filters
The next elements are filters and will change the displayed results once they are selected.
The next elements are filters and will change the displayed results once they are selected.
21 out of 22 Total Reviews for OGRE3D
3.6 out of 5
21 out of 22 Total Reviews for OGRE3D
3.6 out of 5
G2 reviews are authentic and verified.
Tai A.
TA
Software Engineer
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

It is light-weighted in size, well organized in programming style and design patterns, super fast in performance. You have complete accessibility to the source code above the operating system level. Ogre recently added Vulkan support, that is something re-stimulated my interested in this engine. Also Ogre is good for educational purposes in terms of practicing C++, I would strongly recommend it to computer science students who would like to learn the ins and outs of game development. The documentations and tutorials are fairly up to date. Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

Lack of tool chain support, Orgre's multimedia format isn't broadly supported or very popular, converting meshes back and forth is kind of inconvenient and very time-consuming.

It is great for being a rendering engine, we cannot blame it for not having sophisticated networking module, easy data manipulation, animation tools, or visual flow graph, etc., let alone those update-to-date industry relationship support. (For instance, the latest mobile or XR platform support needs constant update and organizational collaboration, which isn't something the Ogre community can achieve yet.) Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

Vulkan Support

Complete ownership of code base

Less overhead Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

Building a render oriented game engine from scratch and deliver a product for specific B2B use case.

The benefits are clear:

No external engine dependency on UE4 or Unity - technically and financially

Smaller size and faster performance

Written in C++, which allows us to integrate a variety of existing tools easily Review collected by and hosted on G2.com.

Julien B.
JB
Owner
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

Easy to use, well documented, portability across platforms, stability

Recently there is a good effort to maintain it and I follow what is going on, as far I can see it goes in the good direction.

The API is good and there are no large changes, the code base very sound.

Easy to integrate in different UI libraries. Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

Missing few things depending on what you want to do, and few performances issues but easy to find some workaround.

For instance:

- it is missing a good triangle selector that you do not have to implement yourself.

- the manual mesh creation needs to be revised to make easy to load very large meshes, because there are too many copies in the existing easy to use interface. For game creation, it is not really a problem because you load once in general the resources, but in order to really use Ogre3D as scene manager, I find this is to be annoying, it is quiet common on my side to load or update on the fly meshes.

- the new materials backend is really missing a well written set of tutorials. I wish there was something easy to follow with a few good material examples, in order to dive into and make something appealing. I know it is working well, but I feel there is too much time to be spent on my side to have a good result. Since, I have very limited time to work and this is not an important priority I try to find from time to time if there is such resource.

- performances can be an issue in few places.

- some bindings to UI libraries can be a bit outdated or not really implemented for your needs: in my case, I am not using any simple loop scheme as found in most games, I am using Qt and its event driven scheme to update the scene. Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

I was not having enough experience about 3D, I was looking for something stable, well documented with examples. Ogre3D was the good candidate, and I do not regret my choice since a few years.

I am using Ogre3D to display medium to large meshes (multiple millions triangles) in my software for Additive Manufacturing (3D printing). I am using it for anything that I have to show in 3D: placement on the bed of the parts, edit/show supports, show toolpath. Review collected by and hosted on G2.com.

Kevin S.
KS
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

I think the camera motion and the setup are very good. It is easy to layout the map to your choosings and is easy to go to whatever coordinate you need to go to. Programming the camera is simple and easy to use. Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

I think that the graphics are not up to par with today's graphics. The framerate is not great either. Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

I have only used OGRE3D in one of my game development classes where we learned about game engines and how to use them. I learned how to create a world and also focus on game design to be able to make the game well. Review collected by and hosted on G2.com.

Bawenang R.
BR
iOS Developer
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

- Open sourced

- Can be bound with a scripting language like Lua

- Great community

- Very optimized

- Cross platform

- Pretty complete documentation Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

- Pretty difficult to set up

- Not newbie friendly / at least you have to know about C++ and the basics of graphics programming

- Not exactly a fully functional game engine (it's just a graphics engine)

- Natively only works in C++ Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

Developing a 3D app for my Bachelor's thesis a few years ago. Trying to make a naval simulation . Review collected by and hosted on G2.com.

Verified User in Computer Games
UC
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

It is free and capable depending on your experience with graphics. It has a few experienced users in the community along with the lead dev. Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

It has very poor documentation and the community is hit or miss. I think the project is dying to be honest. Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

If you know about graphics programming, and specifically, are a graphics programmer, then OGRE3D may be a solution that fits your needs. If you are not those things, other solutions may be easier or more effective. Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

I am writing a game. I'm unsure what benefits I have realized specifically from using ogre over other more popular solutions available. Review collected by and hosted on G2.com.

AW
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

C++, Pretty standardized, Well coded, Nice API. Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

Difficult to extend. Requires a lot of plugins to do advanced features. Features are hard to add. Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

Double check your requirements, make sure the plugins are available, and there is good example code before you start. Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

3D minesite truck tracking.

It makes getting up and running quickly, easy.

It's basic loaders work really well.

I haven't needed to optimize much yet, as Ogre is damn fast. Review collected by and hosted on G2.com.

Verified User in Computer Games
UC
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

It gave satisfying results with lots of flexibility Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

It took a while to get the hang of, That is true of all powerful graphics engines Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

OGRE3D is not the easiest place to start with game development, it's an extremely powerful tool on its own but it's not meant to be a game engine Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

OGRE3D has been my first deep dive into graphics engines. I have been able to learn a lot of depth with OGRE3D Review collected by and hosted on G2.com.

Verified User in Computer Games
AC
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

Ogre makes it simple to render and animate models, with some knowledge regarding 3D rendering and camera logic, it is fairly intuitive to use, it is also easy to provide effects such as particles Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

Considering the time since I last used ogre, I don’t directly recall any major issues, though perhaps if you are not already familiar with concepts of 3D rendering ogre could be difficult to pick up and use Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

Do some study regarding camera logic before starting your project Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

I used ogre3d in college for shuffleboard and bowling games, it was ideal for these games from my recollection Review collected by and hosted on G2.com.

Husam Z.
HZ
Game Developer
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about OGRE3D?

great samples, documentations and references Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

no editor, no updated plugins to export from 3D programs Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

Ogre3D gives you a good quality 3D rendering engine which is needed if you are not using a game engine, or when you want to make simple games, or if you want to have some 3D rendering feature in your software Review collected by and hosted on G2.com.

Luca D.
LD
iOS Developer
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: Seller invite
What do you like best about OGRE3D?

Easy to use, the documentation is so good and you can find a lot of interesting examples Review collected by and hosted on G2.com.

What do you dislike about OGRE3D?

I "dislike" the lack of many Ogre discussion on stackoverflow, is still not too widely used

Shades integration requires large skills Review collected by and hosted on G2.com.

Recommendations to others considering OGRE3D:

You have to study a lot of 3D principles (camera, lights, animations..) Review collected by and hosted on G2.com.

What problems is OGRE3D solving and how is that benefiting you?

I used ogre to develop a beautiful game with a water scenario Review collected by and hosted on G2.com.