RTS

Hello

I am new here and I am looking for a game engine. i compared many of them (c4,torque,lawmaker) and now i am here…

can i build an rts game with this engine? does the scripting support all the needed features…?
can i use the “normal c#” or just mono?

can i for example build a minimap on the screen, too?

what are your experiences with this engine?

thanks from germany

“Yes” to all questions, except the one about experiences, and the answer to that one is: “it’s one of the best things ever.” Seriously.

–Eric

“it’s one of the best things ever.”

most definitely

yes

Unity is an extremely powerful engine with really no limits as far as what can be made. Procedural first person massively multiplayer strategy game with 2D levels? Sure, but it would take a long time and work no matter what engine you use.

That bears repeating, because sometimes it gets lost: While Unity makes things a trillion times easier (<- not an exaggeration) for people like me who have little hope of being able to do OpenGL and game engine coding wizardry ourselves, it won’t make games for you. It makes the impossible possible, but anything beyond minigames is still going to take considerable time and effort. For example, it will do nothing to speed up asset creation (which is frequently the biggest effort with games). But it makes integration of your assets and your game vastly easier and less tedious. (In fact, I’ve gotten so used to Unity’s auto-updating that I sometimes find myself expecting other programs to do it…“OK, I saved that image, why the heck isn’t it showing up in Blender?! …oh yeah, I have to do that myself…”)

–Eric

that sounds very good.
of course i have to do wthe work, not the engine…
but i am interested in the possibilities with this engine…

can i access to the normal .net framework when i use c# as scripting language?

thx

greg

Yep, you have access to nearly everything (if not everything, I dont know. Everything I’ve ever wanted.) that Mono comes with. So I’ve just been using the MSDN documentation and that has suited me just great. I’m pretty sure it doesn’t come with something like Windows.Forms, but XML, Net stuff, System.Environment, you name it.

-Jon

can i make windows games with the indie version???

Sorta. You can export to web with the Indie version, which is playable on Windows PCs then.

Then you can upgrade to Pro and get to export to Windows standalone for no extra work. :slight_smile:

-Jon

With a permanent watermark though. As for the C# questions, all three languages (Javascript, Boo, C#) used by Unity are basically the same when it comes to functionality. I’m sure they all must compile to the same opcode. I pretty much guarantee you’ll spend far more time dealing with the syntax of the Unity commands than the language syntax anyway.

–Eric

Here is a screen of a test project I made back when I was interested in doing an RTS:

As you can see you can do a minimap, and it also has an RTS like camera a buttons along the side that function as a simplistic map editor.

I also have little coding knowledge of both JS and C# in Unity but was able to learn as I went using avalible scripts and help from IRC.

AGhost

Ahh good point, forgot about that. :slight_smile:

-Jon

Unity = :smile:

Haha, yes. I’m an awful programmer and an awful artist, but Unity was intuitive to me from the beginning, and I’ve become much better in both areas through it because I don’t have to worry about the middleman. No other engine would ever be suitable for a writer but Unity; it doesn’t limit the imagination, but takes limited effort.

i saw a video about the drag and drop possibilities with this engine (script physic)…

this looks really great and shows the good GUI of this engine…

i really like it. the only thing i dont like is the webplayer for windows… i cant afford the pro version…

hm…

does unity need mac os to run???

than the game is over… with unity :frowning:

i have xp

Yes, it’s Mac only for now.

Amen.

damn… it looks great…

then i will go with lawmaker…

You can build anything you want. The problem is that you have to be very careful with polygon count. Also, if you use interiors, you can have a huge loss in performance, since Unity doesn’t have a interior renderer, so you end up rendering everything around even if you can’t see it.

You can use “normal c#” as long as it is 1.1. Unity at this time supports mono’s c# implementation, which is at version 1.1 (basically there’s no support for generics).

Unity is much faster to learn and create prototypes. It is great for designers you just want to do simple demos (i.e. simple programming) to show their portfolio.

It is really great for programmers to. It has a great functionality, the exposed variables, which lets you tune your variables in order to get the desired behavior.

I only see one “problem” (aside from the interior renderer) with Unity at the time - it’s kind of slow on my machine. Maybe this is because it uses mono, or simply my machine’s specs (I have a powerbook G4 1.67 with a radeon 9700 with 128 mb, and halo, wow and warcraft 3 run fine on it, so I think it’s a mono ‘problem’).