Unity
Moderator: Coders of Rage
-
- Chaos Rift Junior
- Posts: 200
- Joined: Mon Feb 22, 2010 12:32 am
- Current Project: Breakout clone, Unnamed 2D RPG
- Favorite Gaming Platforms: PC, XBOX360
- Programming Language of Choice: C#
- Location: San Antonio,Texas
- Contact:
Unity
I am getting back into game dev having now successfull fixed my ailing pc. I was wondering what everyone's thoughts were on Unity3D. I'm considering either using that or XNA to ease back into deving.
Re: Unity
Unity is a prebuilt engine, whereas XNA is simply a nice framework...so, i guess what I'm saying is...There're largely different.
As for my "thoughts on Unity..." I was extremely impressed. Many things were done right with it, and it we sometimes find ourselves inspecting how unity's infrastructure works when faced with complicated design decisions. (well, atleast I do.)
Anyway, if you're looking at XNA, I'm going to assume you may wanr to get in on some of that Xbox action? If so, you may be pleased to hear that Unity will soon become compatable with 360 as well as Wii (and i guess you already know aboit the current standalone, webbrowser, and Iphone builds?)
Anyway, posting from Iphone, so maybe I can get into a more detailed discussion later. Is there anything in particular you'd like to know?
As for my "thoughts on Unity..." I was extremely impressed. Many things were done right with it, and it we sometimes find ourselves inspecting how unity's infrastructure works when faced with complicated design decisions. (well, atleast I do.)
Anyway, if you're looking at XNA, I'm going to assume you may wanr to get in on some of that Xbox action? If so, you may be pleased to hear that Unity will soon become compatable with 360 as well as Wii (and i guess you already know aboit the current standalone, webbrowser, and Iphone builds?)
Anyway, posting from Iphone, so maybe I can get into a more detailed discussion later. Is there anything in particular you'd like to know?
<qpHalcy0n> decided to paint the office, now i'm high and my hands hurt
-
- Chaos Rift Junior
- Posts: 200
- Joined: Mon Feb 22, 2010 12:32 am
- Current Project: Breakout clone, Unnamed 2D RPG
- Favorite Gaming Platforms: PC, XBOX360
- Programming Language of Choice: C#
- Location: San Antonio,Texas
- Contact:
Re: Unity
How complex of a game can you build with Unity? I'm trying to decide which one to start with.
-
- Chaos Rift Junior
- Posts: 345
- Joined: Tue Jan 12, 2010 7:23 pm
- Favorite Gaming Platforms: PC - Windows 7
- Programming Language of Choice: c++;haxe
- Contact:
Re: Unity
http://www.youtube.com/watch?v=d_U_u_E_ ... r_embedded
However complex you want it to be really. Just because it runs in a web browser, don't be fooled to think that it matters. Really, all it is doing is drawing an opengl/directx? window inside a web browser. The browser defines where and how big to make the screen and that's about all the browser does.
However complex you want it to be really. Just because it runs in a web browser, don't be fooled to think that it matters. Really, all it is doing is drawing an opengl/directx? window inside a web browser. The browser defines where and how big to make the screen and that's about all the browser does.
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Unity
You can build anything with Unity. But it's a completely prebuilt engine. Ask yourself if you want to code your own engine (which you will probably be doing in XNA), or if you want to be scripting for an already built engine (Unity). The two aren't really comparable at all. Two completely different development paths.
-
- Chaos Rift Junior
- Posts: 200
- Joined: Mon Feb 22, 2010 12:32 am
- Current Project: Breakout clone, Unnamed 2D RPG
- Favorite Gaming Platforms: PC, XBOX360
- Programming Language of Choice: C#
- Location: San Antonio,Texas
- Contact:
Re: Unity
That's what I was thinking. Unity just seemed to have that "game creator" feel about it all be it much more powerful. So, with Unity I'd basically be adding scripting for my game and my game assets?
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Unity
Exactly. Granted scripting is C#/Javascript and is powerful as all fuck, but it's just scripting nontheless. The unity engine handles everything for you.mattheweston wrote:That's what I was thinking. Unity just seemed to have that "game creator" feel about it all be it much more powerful. So, with Unity I'd basically be adding scripting for my game and my game assets?
-
- Chaos Rift Junior
- Posts: 200
- Joined: Mon Feb 22, 2010 12:32 am
- Current Project: Breakout clone, Unnamed 2D RPG
- Favorite Gaming Platforms: PC, XBOX360
- Programming Language of Choice: C#
- Location: San Antonio,Texas
- Contact:
Re: Unity
I'll probably go with XNA for now as I'd like to play around with some stuff for the XBOX. Unity looks really nice so, I'll probably try it out some more as well. Right now, I'd like to abstract much of the lower level stuff as possible till I get into the swing of things. I'm sure you can do much of the lower level stuff with XNA if you dig deep enough.