RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Anyone using Unity for game dev?

zerodowned

Sorceror
Just realized that Unity uses c# and since I'm finally feeling comfortable with c#, I'm taking a look at using it for game development.

Has anyone else tried this?

The idea of making a game outside UO is interesting but getting all of the effects, animations, etc etc is obviously not going to be easy.
 

pooka01

Sorceror
Well, i use it and unity is not just pure c#, there's GameObjects, Transforms, Components, etc.
To create an item, you basically need to move everything out of the constructor and place them in a public init method, so you can set the constructor, such as:
GameObject item = new GameObject();
Item component item.AddComponent<Item>();
component.Delete();

then to delete you must add DSestroy(this); in the Delete, etc...
it would take a while to even be able to do such.
 
Top