Using for ... var ... in loop to access variable.
I'm trying to draw the variable number that every cube has but it's not working. The cubes are instantiated and the variable is set in the cubes randomly. I tried drawing cube.transform position and...
View ArticleTrying To Do A Sword Attack Animation Using Parents, Local Position And Local...
First i declare the sword object and the arm object that holds the sword in the editor. public Transform sword; public Transform swordarm; If the player is not attacking then the sword is in the...
View ArticleI Tried Following The Wheel Collider Tutorial But Ran Into Some Problems.
This is the tutorial. http://docs.unity3d.com/Manual/WheelColliderTutorial.html This part in the second script. public List(AxleInfo) axleInfos; Should be. public List axleInfos; I did everything...
View ArticleAnimations Imported From Blender Get Stuck In a RPG.
I'm using the legacy animation type. I rig my characters in Blender. If i set the attack speed too high then the attacking animation has a chance to get stuck. Sometimes enemies also get stuck even...
View ArticleDirectional blocking like in Dark Souls.
I can't figure out how to compare directions between attacks and player's block. I have the direction the attack is going in, the direction the player is blocking towards and if the player is blocking...
View ArticleMany problems with enemies with character controller.
In editor speeds are different than when the game is compiled. Enemies sometimes walk through walls and fall through the floor. The floors and walls are box colliders with no other code. The enemies...
View ArticleWhat would be a good way to do giant enemies similar to Shadow of the Colossus?
The player will have to be able to stay between enemy legs and climb the enemy, so a character controller won't work. I only really know how to do collision with CharacterController.Move. What other...
View ArticleIs there a shorter way to write this code?
For example something like l.type+type = null; ? if (type == 0) { l.type0 = null; } if (type == 1) { l.type1 = null; } if (type == 2) { l.type2 = null; } if (type == 3) { l.type3 = null; } if (type ==...
View ArticleAre there any simple / flexible level generation systems?
I'm looking for really simple code that i can use as a base and build on top of, for example something simple is using tiles of same size to build a base and use that as a level. These tiles can be...
View ArticleTrying to build a simple first person controller.
The problem is when i look up the character starts hopping. Pointing out any other issues i might encounter with this setup would be great as well, since i'm sure this could be done better....
View ArticleWhat is a good way to save?
So far i know how to use PlayerPrefs. I like the system because it's possible to easily set and get floats, ints and strings. I also like that you can delete all data. I'd like to know of a similar...
View ArticleHow do i pass a script as an argument to a function?
I want to make a generic function in another script that needs a script as an argument. The code would look something like this void Health (? (not sure what goes here) script) { script.health = 10; }...
View ArticleDrawing UI canvas image over GUI.button.
I need to use both GUI.Button and UI canvas image. Currently GUI.Button is drawing over UI canvas image. How can i draw UI canvas image over GUI.Button?
View ArticleIs it possible to check if something is in a delegate?
Creating. delegate void Delegate(); Delegate List; Update. void Update () { List(); } Adding and removing. Edit is a function. List += Edit; List -= Edit; Is it possible to check if List, for example...
View Article