Does Unity's team make their OWN games?

I was making animations for my game when I thought, obviously, someone created the Unity 3D Engine. Not a person, but an entire company. So I was kind of stumped!

Does COMPANY responsible for creating the Unity made a game for it? It has hundreds of developers out there making their own games in Unity, and the official store has some packages made by the Unity team, but did they actually made a game? Something BIG and IMPORTANT?

The one, the only, the original.

5 Likes

Many Unity devs work on there own game projects. However there is no big official showcase game made by Unity with Unity.

That’s kind of … ridiculous.
As a company formed by tens (or hundreds, or even more) programmers how can they don’t even make ONE GAME? With all the potential! They know all of the engine. So they could easily do several things in the engine with EYES CLOSED! Why they never made a game? This game “GooBall” only has one video on youtube, and it’s horrible -.- ’

Makes sense that they quit making games and did what they’re good at then, doesn’t it?

5 Likes

When you run the most widely used game engine in the world you are welcome to run it differently. :wink:

Remember the story of GooBall. GooBall was made first, before the engine was. The game failed. The devs decided that they could salvage some of the tech and turn it into an engine. And that’s how Unity was born. Since then the company has focused mainly on building the engine, and not on making games.

But that doesn’t makes sense!
I am a game developer. I will make a game and it will be sucessfull!!!
3 MONTHS LATER
Dammit! The game wasn’t sucessfull!! You know what? I will enter in depression and create a Graphic Engine, duck this.

They also distribute prizes to great Unity Developers. They could make a lot of good quality games! Me, for an example, i am not that good at programming, actually i am a great editor and good webmaster. BUT i don’t give up :v
I have so much good ideas! If i has a company with lots of designers and programmers, i would never give up! I would be rich anyway… I don’t know how you speak this in english but i think it would be:
“The practice leads to perfection.”

What? Are you saying they’re not successful with the path they chose? I think they’re doing quite well. Why do they need to make games? They’re making an engine so that we all can make the games with it.

1 Like

[quote=“Zitoox, post:4, topic: 627795, username:Zitoox”]
As a company formed by tens (or hundreds, or even more) programmers how can they don’t even make ONE GAME? With all the potential! They know all of the engine. So they could easily do several things in the engine with EYES CLOSED! Why they never made a game?
[/quote]Because we’re busy making the engine.

8 Likes

WHY DON’T YOU DO A GAME? =(
Imagine what you could do. As i said, Unity has so much potential! There’s NO better way to show game developers that Unity is better, than making a game with it. A game by Unity, made with Unity. A great game! That’s my opinion. It would be a lot better than just focus on the engine. It is great already. I know, there’s always more work to do, but you could at least try. It doesn’t take SOOOO MUUUCH time to do a game. And it doesn’t need to be a AAA game to be good. It just need’s to be special.

[quote=“Zitoox, post:10, topic: 627795, username:Zitoox”]
There’s NO better way to show game developers that Unity is better, than making a game with it.
[/quote]Sure there is: to focus on helping people make hundreds of thousands of awesome games with it :slight_smile:

6 Likes

That’s completely reasonable. You know how they say “When life give you lemons, build aircraft carrier out of them”? Same thing.

Potential of unity has been realized in projects made by other devs. Pillars of Eternity, Shadowrun, Wasteland 2, etc.

If you want engine written by people who make games, try unreal 4. Learning curve will be significantly steeper, though.

3 Likes

What? I didn’t understand a word. Unity have potencial! Why are you saying it doesn’t have? Also, you build a engine so you can work on that to make a game. That’s why it’s a engine. It is created to build games (or in some cases robots’ prototypes).

  1. There are great games made with unity. Pillars of Eternity, Shadowrun Returns, Wasteland 2.
  2. There’s no reason to make games when you can earn money by maintaining the engine.

Also…

  1. Making general-purpose engine is harder than making an engine for just one game.
1 Like

[QUOTE=
3. Making general-purpose engine is harder than making an engine for just one game.[/QUOTE]

Are you sure? ‘-’[/QUOTE]

This is 100% true, yes.

1 Like

If the Unity developers started making their own games, it’d be “Why are you wasting time making a game instead of adding features and fixing bugs!?”

6 Likes

I actually think a lot of Unity’s staff have worked on AAA titles in the past before coming over, so there’s that.

3 Likes

Zitoox, they shifted their focus, they did not “give up”.
I don’t see the “wasted” opportunity you are talking of, if they WANT to focus on making the engine better.
Making a game takes alot of time and resources, specially if you “expect” them to show off what can be achieved with this engine.
And they don’t need to. They have alot of other devs showing off for them what the engine can do and alot of devs are helping with feedback to make the engine better all the time and some devs might even do things with this engine, no one even thought of before.

If they would have wanted to continue making games, they would do that, but it’s their decision, not yours. (which they probably have made long time ago already)

One hundred percent sure.

The simplest problem to solve is the one that is tightly constrained, becase you can cut corners and remove handling pf edge cases and strange scnearios that will not ever happen in this particular product.

Once you’re making things that should be flexible and reusable in multitude of different products, difficulty skyrockets, and you may end up with stuff of nightmares in terms of complexity.

This is why it is easier to make an engine for just one game instead of a general-purpose engine/framework that can be used in many games.

Practical example:

  1. Write a function that compares two numbers.
  2. Write a function that compares two objects of any kind.

#1 is easy because the problem is constrained to numbers.
#2 is difficult to solve because the function must also handle scenario where the first argument is color green and second one is elephant.

2 Likes