Answer by Mortoc
You should be able to make them all the same mesh without adding tris. In your 3D modeling tool just combine all the meshes in to a single object. For prop-sized objects, that's pretty much the rule of...
View ArticleAnswer by Mortoc
Bug in your code. You probably want this: void Start () { GameObject newobj = new GameObject("Testing"); newobj.transform.parent = transform; // this transform, not the parent...
View ArticleAnswer by Mortoc
You can use http://docs.unity3d.com/Documentation/ScriptReference/TextAsset.html I recommend formatting your data in JSON or XML so that it's easier to read/maintain later on.
View ArticleAnswer by Mortoc
The problem you have is here: movement.x = Input.GetAxis("Horizontal") * speed; movement.z = Input.GetAxis("Vertical") * speed; You're applying movement in "world-space". If you want to move in...
View ArticleAnswer by Mortoc
Typo in the function name: OnControlerColliderHit should be OnControllerColliderHit
View ArticleAnswer by Mortoc
Well, moving is getting set to true and it's defined outside the scope of MoveFromTo. That means the 2nd call to MoveFromTo doesn't do anything.
View ArticleAnswer by Mortoc
I'd start by looking at Lua. It's a pretty common modding language and it's pretty easy to set up in Unity. http://www.dannygoodayle.com/2013/05/31/integrating-unity-with-lua-in-two-minutes/
View ArticleAnswer by Mortoc
I've gotten this a few times too. If you navigate to your Documents folder (C:\Users\nmona_000\Documents), right-click it and hit Properties. In there, uncheck readonly under Attributes and make sure...
View ArticleAnswer by Mortoc
Nope, you can't block while waiting for a Web request, nor would you want to (your app will appear to have crashed). You can split your app in to 2 scenes, 1 would be the loading scene that does the...
View ArticleAnswer by Mortoc
Instead of myTransform.Translate (Vector3.up * lightningSpeed * Time.deltaTime); try: myTransform.Translate (transform.forward * lightningSpeed * Time.deltaTime); This uses the forward vector on the...
View ArticleAnswer by Mortoc
Right now your scripts are modifying transform and rigidbody. You want to modify one or the other per-gameobject, not both. Also, any modifications to rigidbody should be done during the Physics...
View ArticleAnswer by Mortoc
// assuming the ground is on it's own layer called 'ground-plane' int mask = 1 << LayerMask.NameToLayer("ground-plane"); // get the 2 camera-corner rays Ray topRightRay =...
View ArticleAnswer by Mortoc
Move this code from Update to FixedUpdate since it's dealing with physics (the rigidbody).
View Article